A = game.Workspace.Car.part.Position
wait(1)
B = game.Workspace.Car.part.Position
Speed = A - B
print(speed)
end
This is the start of my script. It is not working and I do not know how to fix it. It will print "nil" in the output when it is still but it will not print anything when it is moving. |