//Simple Instantiation of a Prefab at Start
var thePrefab : GameObject;
function Start () {
yield WaitForSeconds(2);
var instance : GameObject = Instantiate(thePrefab, transform.position, transform.rotation);
}
i want to create the thing every 2 secounds, but how? i know that i cant put it in update function