i followed the tutorial and using the same version of IDE & UNITY told in tutorial where i get to use Input System of the car left & right but in my case even without the input my vehicle keeps going left (-1) i cross checked my code which is not a problem i suppose
When you say that your car moves left without inputs, do you mean it does so when you remove horizontalInput from the equation, or do you just assume it’s zero? For the latter, check if it’s actually zero using Debug.Log(horizontalInput). You may have a gamepad or something attached resulting in a small value.
If that’s not the problem, comment out line 23 (in your screenshot) and check if it still goes left. If that’s the case, you rotated your object in such a way that the forward translation you apply moves you left instead.
Also, please use code tags instead of screenshots for future code examples