Help, I can't find my error

hello, I have been trying to fix this error but what ever I try, nothing works

Assets/weaponScripts/Shoot.js(5,40): BCE0044: expecting ‘"’, found ‘\r’.

I have absolutely no Idea what that means

Here is my code

var perfabBullet:Transform;

function Update ()

{

          if(Input.GetButtonDown("click"))

{

	     var instanceBullet = Instantiate(prefabBullet, transform.position, 

Quaternion.identity);

      }

}

You’ve wrote perfabBullet instead of prefabBullet in variable’s declaration.

Third time answering this, two of my answers got sucked up…so this’ll be a bit hasty.

Yeah, you typo’d perfabBullet when you declared the variable.

Also, if you haven’t set up in the Input Manager a “click” axis, then that if won’t work. You could use Input.GetMouseButtonDown();
It takes an integer as an argument: 0 is left click, 1 is right click, 2 is middle click. So if you wanted to check if the player hit the left click, use this:

if (Input.GetMouseButtonDown(0))