Visible (Property): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer No edit summary |
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>" |
||
(9 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
<onlyinclude>{{Property | |||
|name = Visible | |||
name = Visible | |property = [[bool]] | ||
|property = [[ | |description = Determines whether the object and its descendants will be displayed. | ||
|description = Determines whether the object and | |objects = [[RBX.lua.GuiObject (Object)|GuiObject]], [[RBX.lua.LoadingGui (Object)|LoadingGui]], [[RBX.lua.GuiBase3d (Object)|GuiBase3d]] | ||
| | }}</onlyinclude> | ||
{{clear floats}} | |||
{{Example|This will only run in a [[LocalScript]].<syntaxhighlight lang="lua"> | |||
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame | |||
frame.Visible = false | |||
</syntaxhighlight>}} | |||
[[Category:Properties]] |
Latest revision as of 04:41, 27 April 2023
![]() | |
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