How do i print workspace's children? this is what i got so far :
print(workspace:GetChildren())
local children = workspace:GetChildren() for i,child in pairs(children) do print(child.Name) 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