I am trying to make a vehicle drive without pressing 'w'. I am able to set VehicleSeat.Throttle to 1 in a loop, however, it drops back to 0 again, and setting to 1 in a loop only results in the vehicle stuttering forward. Is there any way to persistently set Throttle so the vehicle will travel smoothly at full (or partial) speed? (And steer while we're at it. Setting steer seems to have the same behavior)
The code:
local seat = script.Parent while true do seat.Throttle = 10 wait(0.01) end