Hello I am kevman599! I am building a build mode system, and currently the exit editor, Place item, Place path, Place wall guis are always there. I want them to be invisible untill I click the edit button, and invisible again, when I click the exit editor. I have tried several diffrent examples of post, and none have worked, the way I arranged the guis are in the pictures below.
Wait so you want the Place things to be invisible until you click edit, in which case they be visible?
If you make the Frames enabled/visible = false it should make everything inside it(The children) non visible.
Yes. Then when clicking Stop editing they will become invisible again.
But, I need a way for when I click the button, they become visible.
Okay, so each gui has properties in it, There is a property called visible this will make anything that inside this gui disappear and the gui itself invisible, so if you made the frame visible = true then it would make everything visible, then you could set it back to false after they are done editing or whatever you are trying too make, this also can be done with individual guis not just frames.
You can additionally set the property of the frame like this. frameName.Visible = false
for invisible, and frameName.Visible = true
for visible
Ohhhh, I am a idiot, my bad. Your Comment has been marked as solved!