local parts = game.Workspace.Parts:GetChildren() local Spawn = game.Workspace.Spawn parts.Position = Spawn.Position -- is there is anything Wrong? am not getting any error in the output
Use for i, v in pairs() to get the children
here's an example script
for i, v in pairs(game.Workspace.Model:GetChildren()) do if v:IsA("Part") then v.Name = "Lol" end end
This will name all of the parts in the Model "Lol"
So to position them you'll need to do
for i, v in pairs(game.Workspace.Parts:GetChildren()) do v.Position = Position end