Visible (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Pauljkl
Mix up of it's and its
>JulienDethurens
No edit summary
Line 3: Line 3:
|property    = [[Boolean]] ''visibility''
|property    = [[Boolean]] ''visibility''
|description = Determines whether the object and its children will be displayed.
|description = Determines whether the object and its children will be displayed.
|object     = GuiObject
|objects     = [[RBX.lua.GuiObject (Object)|GuiObject]], [[RBX.lua.LoadingGui (Object)|LoadingGui]]
}}</onlyinclude>
}}</onlyinclude>


{{clear floats}}
{{clear floats}}


{{Example|This will only run in a [[LocalScript]].<pre>
{{Example|This will only run in a [[LocalScript]].<code lua>
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame
local frame = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame
frame.Visible = false
frame.Visible = false
</pre>}}
</code>}}


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

Revision as of 22:09, 2 February 2012

Visible
Property Boolean visibility
Description Determines whether the object and its children will be displayed.
Member of GuiObject, LoadingGui


Example
{{{1}}}