Camera Swap Script

I seem to be getting an error with this. If someone could give me some guidance on this.
Assets/camera_script_nw.js(4,11): BCE0044: expecting (, found ‘Start’.

var main_Camera : Camera;
var Camera_2 : Camera;

-function Start(){
	main_Camera.enabled = true;
	Camera_2.enabled = false;
	
}

-function Update (){
if(Input.GetKeyUp("1")){
main_Camera.enabled = true;
	Camera_2.enabled = false;
	
} 

if(Input.GetKeyUp("2")){
main_Camera.enabled = false;
	Camera_2.enabled = true;
	
}	

}

It would help if you were to post what the console is telling you :wink: As for the script, you need to close the Start method before defining another.

Solved Doooh…