Trouble Instantiating C# (error CS1503: Argument `#3' cannot convert `UnityEngine.Quaternion' expression to type `bool')

Hey I got some helpful feedback last time so here I go again!

So I get this error while trying to instantiate enemies.

error CS1503: Argument #3' cannot convert UnityEngine.Quaternion’ expression to type `bool’

Here is my script

public GameObject enemy
public Transform spawnPoint;

void SpawnWave ()
{
	Instantiate (enemy, spawnPoint, Quaternion.identity);
}

Instantiate with 3 parameters, and the 2nd being a transform, is expecting a bool, instantiateInWorldSpace for the 3rd parameter. That is why you are getting this error.

Change your 2nd parameter to spawnPoint.position and you should be good to go.

-Larry