Visible (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">"
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
 
Line 11: Line 11:
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame
frame.Visible = false
frame.Visible = false
</SyntaxHighlight>}}
</syntaxhighlight>}}


[[Category:Properties]]
[[Category:Properties]]

Latest revision as of 04:41, 27 April 2023

Visible
Property bool
Description Determines whether the object and its descendants will be displayed.
Member of GuiObject, LoadingGui, GuiBase3d


Example
This will only run in a LocalScript.
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame
frame.Visible = false