GetChildren (Function): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>PilotLuke
No edit summary
>Camoy
Redirecting to GetChildren (Method)
 
(37 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{Function|
#REDIRECT [[GetChildren_(Method)]]
name                  = GetChildren
|arguments            =
|returns              = [[Table]] ''children''
|description          = Returns a read-only table of this Object's children
|object              = Global
|}}
 
==Example==
<pre>
 
local children = game.Workspace:GetChildren()
for c = 1, #children do
print(c.Name)
end
 
</pre>

Latest revision as of 12:31, 18 January 2011