I am trying to make a automatic moving car i tried using cframe but its not smooth and i tried using body mover but the wheels wont spin (it makes the whole model spin instead) is there any other way i can make a smooth moving car without those problems?
Automatic car as like auto pilot?
2 Likes
yes i think she wants like tesla
no its a moving model that player can stand on it while the car is moving
Put this script inside of the part/mesh:
local OrigCF = script.Parent.CFrame
while true do
while true do
wait()
for i = 1,1000 do
script.Parent.CFrame = script.Parent.CFrame + Vector3.new(0,0,-3) --car goes forward
wait()
end
script.Parent.CFrame = OrigCF
end
end