I wanna control the Vector Force with a Vehicle Seat. It works fine (the value changes) but the part isn’t moving.
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)