ERROR BCE0044: unexpected char: 0x201C.

I get this error and dont know what it is, heres my code

var gun : Transform;
var BulletSpawn : Transform;
var Bullet : GameObject;
function Start () 
{
if(Input.GetButtonDown(“Fire1”));
Instantiate(Bullet <BulletSpawn.transform.position,BulletSpawn.transform.rotation);

“<” …

[ code ] [ /code ] tags btw

There’s also a semicolon after your if statement and no closing bracket to your Start method.

Did you spend any time trying to debug this before you posted?