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!!!