how do I move everything in a model by positioning it?
There are a couple ways to move an entire model.
I think you would use the > game.Workspace.Model:GetChildren() Method But then you would use something around like this
while true do f = game.Workspace.Model:GetChildren() f.Position = Vector3.new(0, 0, 0) f.Position = Vector3.new(0, 0, 0) end
Something Like that I think.