I want to toggle a GUI on and/or off, but it wont turn on or off! I would know how to do it if it just was
1 | local GUI = game.StarterGui.GUI |
2 |
3 | GUI.Visible = true |
I tried it, and it doesn't work! Can someone plz tell me why?
Visible
isn't ScreenGui
property. Use Enabled
instead.
1 | local GUI = game.StarterGui.GUI |
2 |
3 | GUI.Enabled = false -- GUI is disabled which means player can't see it |
local GUI = game.StarterGui.GUI -- Wont change anything for the player. Use game.Players.LocalPlayer.PlayerGui.GUI
is the gui.
GUI.Visible = true -- wont change anything will even error as visible isn't a property of a GUI, thats called "Enabled
"
1 | game.Players.LocalPlayer.PlayerGui.GUI.Enabled = true |
would do what you need.
Make sure you put 2 frames in the one screengui and in one of the frames put a button (text or image) then try:
1 | local frame = script.Parent.Parent.Parent:WaitForChild( 'name_of_your_frame' ) |
2 | script.Parent.MouseButton 1 Click:connect( function () |
3 | frame.Visible = not frame.Visible -- since Visible is a boolean, it can be toggled by doing the opposite of what it is so if its open its true vice versa |
4 | end ) |
You can either write it as ...
1 | local GUI = game.StarterGui.GUI |
2 |
3 | GUI.Enabled = false -- it disables the "ScreenGui" and makes it invisible along with it's properties |
or you can write it as...
1 | local GUI = game.StarterGui.GUI |
2 |
3 | GUI.Frame.Visible = false --add a Frame/Textlabel/imagelabel/ etc. |