Why is the GUI not closing?
Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
My goal : I am trying to make a script that opens a window when you click a GUI button
the closes that window if it is visible when the button is clicked again.
The problem: when i click the button again and again it just keeps printing level 1 complete and stops there
it also opens the window., i get no errors in the output to.
01 | a = script.Parent.Parent.Frame |
02 | b = script.Parent.Parent.Frame.VoteText |
03 | script.Parent.MouseButton 1 Click:connect( function () |
06 | print ( "level 1 complete" ) |
11 | print ( "level 3 complete" ) |
14 | if a.Visible = = true and b.Visible = = true then |
15 | script.Parent.MouseButton 1 Click:connect(onClicked) |
16 | print ( "level 2 complete" ) |