Steering Wheel Rotation (563442)

I am new in scripting and i need some help. I want to make a car project ( first person ) and i need script for steering wheel. I try to write a code but … dont work :confused:

var TurnSpeed : float =0.1;

function LateUpdate ()

if ( Input.GetKey(β€œa”) )
{
this.tranform.Rotate(0.-this.TurnSpeed,0);
this.transform.localPosition.TurnSpeed = Vector3(0, 0, 0);
}
if ( Input.GetKey(β€œd”) )
{
this.transform.Rotate(0,this,TurnSpeed,0)
this.transform.localPosition.TurnSpeed = Vector3(0, 0, 0);
}

bump