The current version of the VehicleController module has right trigger incorrectly reverse throttle when pressed.
I believe the following change on line 142 fixes the issue
Incorrect
self.acceleration = (inputState ~= Enum.UserInputState.End) and 1 or 0
Correct
self.acceleration = (inputState ~= Enum.UserInputState.End) and -1 or 0
Thanks!