Vector Force works, but the part isn't moving automaticlly

I wanna control the Vector Force with a Vehicle Seat. It works fine (the value changes) but the part isn’t moving.


image

local thrust = script.Parent.wheels.VectorForce
--local turn = script.Parent.wheels.Torque
local seat = script.Parent.VehicleSeat

local speed = 1000
--local turnspeed = 100

local rs = game:GetService("RunService")

rs.Stepped:Connect(function()
	thrust.Force = Vector3.new(seat.Throttle * speed)
	--turn.Torque = Vector3.new(-seat.Steer * turnspeed)
end)
1 Like

Make sure your part is unanchored.
Or if its a local script then make sure to set it as a server script.

it’s unanchored and a normal script. I don’t know why but it moves if i put a higher value in it or touch it with another player.

Try this, it might work: