Hey, any idea why the Instantiate method just repeats itselft forever even in the Start method?
void Start()
{
Instantiate(this, new Vector3(2f, 2f), Quaternion.identity);
}
^ wherever i run this code it just keeps spawning my object.