public void OnTriggerEnter2D(Collider2D col) { if (col.gameObject.tag == "Player") { playerScript.PlayerGrow(); Destroy(this.gameObject); } }