Problem with A-Chassis and Anchoring

Hi,

I am using A-Chassis for a game im making, and I keep trying to make it so that whenever the driver exits the vehicle, it anchors and can’t be moved until the player re-enters the driver seat. Whenever I tried anchoring the drivers seat when the player exited, it anchored the vehicle and the wheels kept spinning and the player kept sliding on the vehicle. Does anyone have any fixes for this?

1 Like

To fix the sliding on the car you can do:

local part = -- your part!
part.AssemblyLinearVelocity = Vector3.New(0, 0, 0)

This code resets velocity on any part!

1 Like