``The script i used:
local GUI = script.Parent.Play while true do wait(48) script.Parent.GUI.Visible = true --// And make it invisible again after a certain time wait(9999999) script.Parent.GUI.Visible = false end
Doesnt work. By the way it might sound dumb since im new to scripting. (Putting full script would help)
put a local script inside the screen gui then make the enabled set to false then paste this
while true do wait(48) script.Parent.Enabled = true wait(9999999) script.Parent.Enabled = false end
this works because I tested it and know it does.
I think that I would do
script.Parent.Visible = true wait(99999999999) script.Parent.Visible = false
by the way: I don't think it's possible to close a gui. try making a frame and all the content in the frame.
while true do wait(48) script.Parent.Enabled = true --// And make it invisible again after a certain time wait(9999999) script.Parent.Enabled = false end
put this script in the gui and make the script be a local script