private void OnTriggerEnter2D(Collider2D collision) { if (collision.name == "Player") { playerDeath.Heal(10); Destroy(gameObject); } }