is is possible to find out to fast a car is or like the speed of the car in MPH. and print the MPH of the car is it Possible to Find the speed of the car?
It is not possible to find out MPH directly from the moving car as roblox's measurement system does not use inches, miles, etc. But you can find out the speed in roblox's units (im pretty sure its studs per second).
Put script inside of VehicleSeat:
while true do local seat = script.Parent local speed = seat.Velocity.magnitude print(speed) wait() end