//Gestión del ataque fisico public void AtaqueFisico() { hp -= playerScript.Fuerza; if (hp <= 0) { Destroy(gameObject); ui.Aumentar(exp); } }