Where to put ;

Hi my unity console says that I’m missing 3 semi-colons WHERE? -I feel so dumb : (
Sorry I’m new to JS. Any help would be thanked. : )

#pragma strict
float Yh = Screen.height / 2;
	float Xw = Screen.width / 2;
function Start () {

}

function Update () {
transform.eulerAngles = new Vector3(Input.mousePosition.x + Xw + transform.eulerAngles.x, Input.mousePosition.y + Yh + transform.eulerAngles.y, 0);
yield return new WaitForSeconds(5);
}

Click on the error.It will open up the place where you have written the code and you will observe a line or two is highlighted this will make easy for you t find the errors.

Declaring variables in Js is different than in c#

var Yh : float = Screen.height / 2;
var Xw : float = Screen.width / 2;

Remove the yield, that won’t work in the Update()

//yield return new WaitForSeconds(5);