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

How do I create a working popup menu button?

Asked by 6 years ago

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.

01local Button = script.Parent
02local Frame = script.Parent.Parent.Frame
03Frame.Visible = false
04function onClick()
05    if Frame.Visible == false then
06        Frame.Visible = true
07    elseif Frame.Visible == true then
08        Frame.Visible = false
09    end
10end
11 
12Button.MouseButton1Click:Connect(onClick)

What's the issues with this script?

1
use the not operator instead of using if statements User#23365 30 — 6y
0
also use local variables theking48989987 2147 — 6y
0
he is using local variables User#23365 30 — 6y
0
the function isnt local theking48989987 2147 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

I have the Button, Frame and Script all under the ScreenGui. Placed in Starter GUI. Might need to change the variables accordingly

01local Gui = script.Parent
02local Frame = Gui.Frame
03local Button = Gui.Button
04 
05local function onClick()
06    if Frame.Visible == true then
07        Frame.Visible = false
08    else
09        Frame.Visible = true
10    end
11end
12 
13Button.MouseButton1Click:Connect(onClick)
Ad

Answer this question