Normally to go about cloning a part to a specific position you would have something similar to this:
local a = game.Workspace.Part:Clone() a.Parent = game.Workspace a.Position = Vector3.new(1,1,1)
Now, what if you wanted to clone a model with multiple parts to a specific position?
You can have this:
local a = game.Workspace.Model:Clone() a.Position = Vector3.new(1,1,1)
Except this wouldn't work because the property 'Position' is non-existent in a model. So, you could be a little more clever and come up with a for i v in pairs loop:
for i, v in pairs(game.Workspace.Model:GetChildren()) do local b = v:Clone() b.Parent = game.Workspace b.Position = Vector3.new(1,1,1) end
However, this wouldn't work either because it clones each part in the model to the same position. So if anyone out there knows, how would you clone a model to a specific position? Thank you for your help.