Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Why isn't my LOCAL script that toggles a gui on/off working?

Asked by
NSMascot 113
5 years ago

i'm making a gui that when you click a button it toggles another section of the gui on/off. here is the script

1function leftClick(mouse)
2    if script.Parent.Parent.DripColors.Visible == true then
3        script.Parent.Parent.DripColors.Visible = false
4    else
5        script.Parent.Parent.DripColors.Visible = true
6end
7script.Parent.MouseButton1Click:connect(leftClick)
8end

1). all the locations are correct 2). I've tried using :WaitForChild() 3). I've Looked on the internet everywhere for the answer 4). Now i am asking this website 5). Please Help

1 answer

Log in to vote
2
Answered by
sleazel 1287 Moderation Voter
5 years ago

Seems like a silly mistake. Your event connection is declared inside the function. Function never runs, so the connection is never made. Please correct:

01function leftClick(mouse)
02 
03    if script.Parent.Parent.DripColors.Visible == true then
04        script.Parent.Parent.DripColors.Visible = false
05    else
06        script.Parent.Parent.DripColors.Visible = true
07    end
08 
09end
10--here this line needs to be outside function
11script.Parent.MouseButton1Click:connect(leftClick)

I hope I helped.

0
Thankyou NSMascot 113 — 5y
Ad

Answer this question