Hi again, I am attempting to build an authentication server and client. I want to create a scene/level for the server that does NOT have all the heavy graphics and sounds and animations that the client scene needs (keeping the GameObjects). Can I take the client scene and strip out all the graphics, sounds, and animations and use it on the server so that when the server does a JoinChannel(,seneName) it will load the stripped down scene? I want to keep the server as lightweight as possible as I want to be able to run as many games (channels) as possible without running out of memory. Also, do TNet channels "share" scene assets (graphics, sounds, and animations) in order to keep memory requirements down? Thanks!