public void takeDamage(float amount) { health -= amount; if (health <= 0) { spawnBubbles(); Debug.Log("Enemy Dead"); Destroy(gameObject); //DEAD }