GetChildren (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>PilotLuke No edit summary |
>PilotLuke No edit summary |
(No difference)
|
Revision as of 20:29, 12 March 2008
GetChildren( ) | |
Returns | Table children |
Description: | Returns a read-only table of this Object's children |
Example
local children = game.Workspace:GetChildren() for c = 1, #children do print(c.Name) end