Answers for "Roblox iterate through children of folder"

7

get children roblox

local children = workspace:GetChildren()
for i = 1, #children do
    print(i, children[i].Name)
end
Posted by: Guest on May-07-2020

Code answers related to "Roblox iterate through children of folder"

Browse Popular Code Answers by Language