get children roblox
local children = workspace:GetChildren()
for i = 1, #children do
print(i, children[i].Name)
end
get children roblox
local children = workspace:GetChildren()
for i = 1, #children do
print(i, children[i].Name)
end
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us