how to get children of a model roblox code example

Example 1: get children roblox

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

Example 2: How to get all childeren roblox studio

-- Numeric for-loop example
local children = workspace:GetChildren()
for i = 1, #children do
	local child = children[i]
	print(child.Name .. " is child number " .. i)
end

-- Generic for-loop example
local children = workspace:GetChildren()
for i, child in ipairs(children) do
	print(child.Name .. " is child number " .. i)
end

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

Tags:

Misc Example