FPS SCRIPT ERROR PLEASE HELP

I am getting an error with this java script PLEASE HELP.

var Bullet : Rigidbody;

var Spawn : Transform;

var BulletSpeed : float = 1000;

function Start () {

}

function Update () {
if(Input.GetButtonDown(“Fire1”)){
Fire();
}
}

function Fire(){

var bullet1 : Rigibody = Instantiate(Bullet,Spawn.position,Spawn.r­otation);
bullet1.AddForce(transform.forward *BulletSpeed);

}

The error is Assets/Scripts/Gun.js(19,75): BCE0044: unexpected char: 0xAD.

var bullet1 : Rigibody

Rigibody should be Rigidbody.

Also, try to format your code the next time you post something,
this can be done by pressing the “101010” button when creating a post.

Thanks for the suggestion, but I am still getting that same error.