Drifting Velocity

Once I’ve ramped up the LineVelocity and reset it to 0 on this battleship model, the velocity of the ship continues to conserve the momentum.

Gravity is 0. Anchoring and unanchoring does not work. I cannot use a VectorForce as it does not suit my needs.

Any ideas?

https://i.gyazo.com/bee130e3dbf7dc3fb6637275e28e5915.mp4

i made a simple project with this script with gravity set to 0

while true do
	task.wait(5)
	script.Parent.VectorVelocity = Vector3.new(0, 0, -5)
	task.wait(5)
	script.Parent.VectorVelocity = Vector3.new(0, 0, 0)
end

and I don’t have the same problem as you, you can test it for yourself here

LinearVelocity.rbxl (35.6 KB)