So I'm trying to make a popup menu button but this script doesn't seem to work!\ I made sure that everything was in the right place as well.
01 | local Button = script.Parent |
02 | local Frame = script.Parent.Parent.Frame |
03 | Frame.Visible = false |
04 | function onClick() |
05 | if Frame.Visible = = false then |
06 | Frame.Visible = true |
07 | elseif Frame.Visible = = true then |
08 | Frame.Visible = false |
09 | end |
10 | end |
11 |
12 | Button.MouseButton 1 Click:Connect(onClick) |
What's the issues with this script?
I have the Button, Frame and Script all under the ScreenGui. Placed in Starter GUI. Might need to change the variables accordingly
01 | local Gui = script.Parent |
02 | local Frame = Gui.Frame |
03 | local Button = Gui.Button |
04 |
05 | local function onClick() |
06 | if Frame.Visible = = true then |
07 | Frame.Visible = false |
08 | else |
09 | Frame.Visible = true |
10 | end |
11 | end |
12 |
13 | Button.MouseButton 1 Click:Connect(onClick) |