//  
//   
//   
var a=1;
function OnGUI () {
    GUI.Label (Rect (100, 300, 1100, 200), "press 'Enter' - to ride the car, press 'space' to go walk");
}



function Update () {

//       .    		 
		 
	if (Input.GetKeyDown ("space")&& GetComponent (FPSInputController))
        (GetComponent (FPSInputController)).enabled=true ;
		
	
}

    