I want to make it so that the fernature in my room is invisable unitll the a GUI button is pressed. How would i go about changing the visability of an item off and on?
Just enable and disable the renderer if you want it to still have scripts running, or use active if you don’t. Bear in mind that you need to store references to objects that you deactivate as they are hard to find later:
myChair.renderer.enabled = false;
Or
myChair.active = false;
Or if this object has children that should also become inactive
myChair.setActiveRecursively(false);