unidade como convocar um objeto com código
Instantiate(YourPrefab, positionToSpawn, rotation);
//example
Instantiate(bullet, this.transform.position, this.transform.rotate);
//summons a bullet at the position of a THIS game object, and THIS game object's rotation.
Step_ Forward