#Trying to get GUI to close
17 messages · Page 1 of 1 (latest)
You could just do something like this to open / close the frame
local Frame = FRAME_HERE
local Button = script.Parent
local function openClose()
if Frame.Visible == true then
Frame.Visible = false
else
Frame.Visible = true
end
end
Button.MouseButton1Click:Connect(openClose)
I will try then when I get home
what do i put for "frame here"
The frame from the original script you sent?????
which seems to be script.Parent.Parent
this is my explorer if that helps any
this is the open script
it works
but if I flip Frame.Visible = false
** You are now Level 1! **
it just doesnt
this works
it opens and closes now