GetChildren (Function)
From Legacy Roblox Wiki
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