You can do:
GameObject healthOrb = Instantiate(Resources.Load("HealthOrb"), "Place position here", "Place rotation here") as GameObject;
or
GameObject healthOrb = Instantiate(Resources.Load("HealthOrb")) as GameObject;
healthOrb.transform.position = "Place position here";
↧