BCE0044: expecting :, found '='.

I writed same as a script ;

function Start()
{
	if(Input.GetKeyDown(KeyCode.E)); {
		guiTexture.pixelInset.x =136.7;
		guiTexture.pixelInset.y =274.13;
	}
	
	if(Input.GetKeyUp(KeyCode.E)); {
		guiTexture.pixelInset.x =-253.26;
	    guiTexture.pixelInset.y =274.13;
	}
}

But it’s erroring ;

Assets/_Scripts/CameraZoomAnimation.js(4,41): BCE0044: expecting :, found β€˜=’.

Sorry for bad English. :confused:

(KeyCode.E));

Take out the ;

if(true)
{
    //Do this
}