Unity Comment invoquer un objet avec du code

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