I have a pretty big shop GUI that displays the gamepass and takes up a large portion of the screen. Is there a way to hide it while editing the game so I don't have to continuously remove and re-add it every time I adjust a brick?
It would be great to know, and if so, how to do so. Thanks!
Well, a few things can be done
PlayerAdded
http://wiki.roblox.com/index.php?title=API:Class/Players/PlayerAdded
So when the player joins the GUI is active
game.Players.PlayerAdded:connect(function(player) GUI.Visible = true end)
Visible
http://wiki.roblox.com/index.php?title=API:Class/GuiObject/Visible
As TheDeadlyPanther stated above
GUI.Visible = true