MoveTo doesn't work

Hello Developers!
Today i tried to make a thing spawn next to the person but it says "MoveTo is not valid member of “thing name”
here is that part of script:

clonedCar:MoveTo(player.Character.HumanoidRootPart.Position + player.Character.HumanoidRootPart.CFrame.LookVector * 15)

Is clonedCar a model, if not it won’t work.

Moves the Model.PrimaryPart to the given position. If a primary part has not been specified then the root part of the model will be used. Because the root part is not deterministic, it is recommended to always set a Model.PrimaryPart when using MoveTo.

1 Like

clonedCar is a model but it still doesn’t work.