C# Script errors

I’m using the “Simple Shooter” tut from 3DBuzz, and I am on the “firing the projectile” section. I have no problems until I get to this section of code in the player script.

	  if (Input.GetKeyDown("space")
		(
			// Fire projectile
			Instantiate(ProjectilePrefab);
		)
    }
}

then a parsing error always shows up.

Please help!!!

A couple of problems there.

if (Input.GetKeyDown("space")[B])[/B] // You forgot one ')'
		{  // Changed from '('
			// Fire projectile
			Instantiate(ProjectilePrefab);
		}  // Changed from ')'

(Bonk) i feel so stupid. thanks anyway.