When I am trying to clone a model using the script below it brings up an error saying "Position is not a valid member of model" pointing an arrow at line 4.
while true do local noob = game.ServerStorage.Noob:Clone() noob.Parent = game.Workspace noob.Position = Vector3.new(-121, 0.5, -34) wait(0.2) end
Hello, SyncSim!
You can use :MoveTo()
to move a model to a certain position. Remember that your model needs to have a primary part for this to work
while true do local noob = game.ServerStorage.Noob:Clone() noob.Parent = game.Workspace noob:MoveTo(Vector3.new(-121, 0.5, -34)) wait(0.2) end