I've got a Start menu for my game and I want it to disappear when I press play, how would I do this?
GUI = script.Parent.GUI.MouseButton1Down:connect(function() script.Parent:remove() end)
or
GUI = script.Parent.GUI.MouseButton1Down:connect(function() script.Parent.Visible = false end)
Precise variable, also precise parents if they doesnt fit.
you could either do this GUI:remove()
or just make everything inside the GUI invisible
GUIchildName.Visible = false
Closed as Not Constructive by evaera
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?