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:
01 | kickgui 1 = game.StarterGui.GUIKick.Frameholder |
02 | warngui 1 = game.StarterGui.GUIWarn.Frameholder |
03 |
04 | function onClicked(GUI) |
05 | if kickgui 1. Visible = = false then |
06 | kickgui 1. Visible = true |
07 | warngui 1. Visible = true |
08 | else |
09 | warngui 1. Visible = false |
10 | kickgui 1. Visible = false |
11 | end |
12 | end |
13 | script.Parent.MouseButton 1 Click:connect(onClicked) |
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.
01 | local plr = game.Player.LocalPlayer |
02 | kickgui 1 = plr:WaitForChild( "PlayerGui" ).GUIKick.Frameholder |
03 | warngui 1 = plr:WaitForChild( "PlayerGui" ).GUIWarn.Frameholder |
04 |
05 | function onClicked(GUI) |
06 | if kickgui 1. Visible = = false then |
07 | kickgui 1. Visible = true |
08 | warngui 1. Visible = true |
09 | else |
10 | warngui 1. Visible = false |
11 | kickgui 1. Visible = false |
12 | end |
13 | end |
14 | script.Parent.MouseButton 1 Click:Connect(onClicked) |
while the starter gui is a child of the game object, the player gui is a child of the player object
I figured out how to fix it:
01 | button = script.Parent |
02 | window = button.Parent |
03 | kickgui 1 = window.Parent.Parent.GUIKick:FindFirstChild( "Frameholder" ) |
04 | warngui 1 = window.Parent.Parent.GUIWarn:FindFirstChild( "Frameholder" ) |
05 |
06 | function onClicked(GUI) |
07 | if kickgui 1. Visible = = false then |
08 | kickgui 1. Visible = true |
09 | warngui 1. Visible = true |
10 | else |
11 | warngui 1. Visible = false |
12 | kickgui 1. Visible = false |
13 | end |
14 | end |
15 | script.Parent.MouseButton 1 Click:Connect(onClicked) |