Hello,
I’m going through a basic tutorial given to me by a friend so that I may help him teach it over the weekend. I’m having a couple of issues with one of the scripts found in his instructions.
Here’s what I have for the code:
If(Input.GetButtonDown("Jump")) Unknown Identifier 'If', (BCE0005)
{
var theCube = GameObject.Find("Cube").transform;
GetComponent(FollowCamera).target = theCube; Unknown Identifier 'FollowCamera', (BCE0005)
}
I typed this out as written, but why am I getting the errors above?