GetChildren (Function)

From Goodblox Wiki
Revision as of 21:24, 25 September 2021 by Xyrafrost (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Function
Syntax GetChildren( )
Returns Table children
Description: Returns a read-only table of this Object's children
In Object: Global


Example

(Simple example)

local children = workspace:GetChildren()
for c = 1, #children do
     print(children[c].Name)
end

(More efficient example)

local children = workspace:GetChildren()
for i, item in pairs(children) do
     --"item" is the object, "i" is the index of the table it is at
     print("index: "..i)
     print("Object: "..item)
end