when i try out the car i just added a script to it only moves sideways for some reason,
i have copy and pasted the code below.
var forwardSpeed : float = 3;
var turnSpeed: float = 2;
function Update ()
{
//this is the forward speed that will actually happen
var forwardMoveAmount = Input.GetAxis("Vertical")*forwardSpeed;
//actual turn amount
var turnAmount = Input.GetAxis("Horizontal")*turnSpeed;
//rotate the vehicle
transform.Rotate(0,turnAmount,0);
//push the vehicle forward with a force
rigidbody.AddRelativeForce(-forwardMoveAmount,0,0);
}