I wanna control the Vector Force with a Vehicle Seat. It works fine (the value changes) but the part isn’t moving.
![image](http://devforum-uploads.s3.dualstack.us-east-2.amazonaws.com/uploads/original/4X/5/f/3/5f3a702bcc2abc3d3c37741730aaadf1a345aa97.jpeg)
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)