BCE044: expecting :, found ';' error. even tho there is a ';' in that position?

COMPILE ERROR?

On line (9,16) there is an BCE044: expecting :, found ‘;’ error. even tho there is a ‘;’ in that position.

any ideas?

static var Counter : int = 0;

function OnCollisionEnter (myCollision : Collision)
{

if(myCollision.gameObject.name == (“buck”));

{

  Counter++;

  ScoreBoard.text = ("Score: "+Counter); 

}

}

Remove the ; from the end of the if line - you don’t want one there…