How do i print workspace's children? this is what i got so far :
1 | print (workspace:GetChildren()) |
1 | local children = workspace:GetChildren() |
2 | for i,child in pairs (children) do |
3 | print (child.Name) |
4 | end |
What this does is it makes a table of all the workspace's children, and prints the name of every one.
-Ducky
Developer
Youtuber