Visible (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "<code lua>" to "<SyntaxHighlight code="lua">"
Tags: mobile web edit mobile edit
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:
{{clear floats}}
{{clear floats}}


{{Example|This will only run in a [[LocalScript]].<SyntaxHighlight code="lua">
{{Example|This will only run in a [[LocalScript]].<syntaxhighlight lang="lua">
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame
frame.Visible = false
frame.Visible = false
</code>}}
</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