How would I collect all the names from a section (for example in workshop, every part in there I can collect the names or do other stuff)
local children = workspace:GetChildren() --set workspace to whatever you want for i = 1, #children do print(i, children[i].Name) end
This will "collect" all names and print them in console.