GetChildren (Function): Revision history

From ROBLOX Wiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

11 December 2024

  • curprev 12:3312:33, 11 December 2024 PRG talk contribs 689 bytes +689 Created page with "{| |<onlyinclude> {{Function| name = GetChildren |arguments = |returns = Table ''children'' |description = Returns a read-only table of this Object's children |object = Global |}}</onlyinclude> |} ==Example== (Simple example) <pre> local children = game.Workspace:GetChildren() for c = 1, #children do print(children[c].Name) end </pre> (More efficient example) <pre> local children = game.Wo..."