Why isn't my LOCAL script that toggles a gui on/off working?
i'm making a gui that when you click a button it toggles another section of the gui on/off. here is the script
1 | function leftClick(mouse) |
2 | if script.Parent.Parent.DripColors.Visible = = true then |
3 | script.Parent.Parent.DripColors.Visible = false |
5 | script.Parent.Parent.DripColors.Visible = true |
7 | script.Parent.MouseButton 1 Click:connect(leftClick) |
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