gerar um objeto com unidade
//In Unity, spawn = instatiate.
//So if you want to spawn something you instantiate it like so:
public GameObject WhatToInstantiate; //Set this in the inspector to what you want to spawn
Instantiate(WhatToInstantiate, transform.position, transform.rotation);
ThePokedNoob