public void AsustadoFunc()
    {
        if (conteo == 4)
        {
            Asustado.GetComponent <Image>().enabled  = false;
            Pensativo.GetComponent <Image>().enabled = true;
            Puntuacion.text = "4/5";
            AnswerType.text = "Correcto!";
            conteo          = 5;
        }

        else
        {
            AnswerType.text = "Incorrecto, inténtalo de nuevo";
        }
    }
    public void EnojadoFunc()
    {
        if (conteo == 3)
        {
            Enojado.GetComponent <Image>().enabled  = false;
            Asustado.GetComponent <Image>().enabled = true;
            Puntuacion.text = "3/5";
            AnswerType.text = "Correcto!";
            conteo          = 4;
        }

        else
        {
            AnswerType.text = "Incorrecto, inténtalo de nuevo";
        }
    }