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

I'm trying to create a button that opens up a GUI but it doesn't work, why?

Asked by 6 years ago

So basically when you click a button it will make these 2 GUIs appear. This is the code I put in the button but it doesn't work:

01kickgui1 = game.StarterGui.GUIKick.Frameholder
02warngui1 = game.StarterGui.GUIWarn.Frameholder
03 
04function onClicked(GUI)
05    if kickgui1.Visible == false then
06        kickgui1.Visible = true
07        warngui1.Visible = true
08    else
09        warngui1.Visible = false
10        kickgui1.Visible = false
11    end
12end
13script.Parent.MouseButton1Click:connect(onClicked)

2 answers

Log in to vote
0
Answered by 6 years ago

well, you have to use the player gui as the player gui is local to the player, which the starter gui isn't. I.E.

01local plr = game.Player.LocalPlayer
02kickgui1 = plr:WaitForChild("PlayerGui").GUIKick.Frameholder
03warngui1 = plr:WaitForChild("PlayerGui").GUIWarn.Frameholder
04 
05function onClicked(GUI)
06    if kickgui1.Visible == false then
07        kickgui1.Visible = true
08        warngui1.Visible = true
09    else
10        warngui1.Visible = false
11        kickgui1.Visible = false
12    end
13end
14script.Parent.MouseButton1Click:Connect(onClicked)

while the starter gui is a child of the game object, the player gui is a child of the player object

0
It still didn't work. TypicallyPacific 61 — 6y
0
well, what is script.Parent theking48989987 2147 — 6y
0
The script's parent is TextButton. TypicallyPacific 61 — 6y
0
I fixed it. Thanks for the help anyways. TypicallyPacific 61 — 6y
Ad
Log in to vote
0
Answered by 6 years ago

I figured out how to fix it:

01button = script.Parent
02window = button.Parent
03kickgui1 = window.Parent.Parent.GUIKick:FindFirstChild("Frameholder")
04warngui1 = window.Parent.Parent.GUIWarn:FindFirstChild("Frameholder")
05 
06function onClicked(GUI)
07    if kickgui1.Visible == false then
08        kickgui1.Visible = true
09        warngui1.Visible = true
10    else
11        warngui1.Visible = false
12        kickgui1.Visible = false
13    end
14end
15script.Parent.MouseButton1Click:Connect(onClicked)

Answer this question