I need help cloning and moving the model. The function below clones and is suppose to move a model to a position. Everything works except for the moving part. The cloned model does not go to the specified position.
function regenerate()
model:remove()
model = backup:clone()
model.Parent = game.Workspace
model.Position = Vector3.new(53.241, 7.145, 422.68)
model:makeJoints()
end