public void Resurrect()
    {
        nextQuestion.toggleAnswer1.transform.Find("Background").gameObject.GetComponent <Image>().overrideSprite = Resources.Load <Sprite>("Button2");
        nextQuestion.toggleAnswer2.transform.Find("Background").gameObject.GetComponent <Image>().overrideSprite = Resources.Load <Sprite>("Button2");
        nextQuestion.toggleAnswer3.transform.Find("Background").gameObject.GetComponent <Image>().overrideSprite = Resources.Load <Sprite>("Button2");
        nextQuestion.toggleAnswer4.transform.Find("Background").gameObject.GetComponent <Image>().overrideSprite = Resources.Load <Sprite>("Button2");
        nextQuestion.dataPr1                    = DateTime.Now;
        nextQuestion.dataPr2                    = DateTime.Now;
        nextQuestion.timeStartQuestion          = DateTime.Now;
        nextQuestion.enabled                    = true;
        nextQuestion.textNumberingQuestion.text = $"Вопрос { (nextQuestion.counter % 15) + 1}";
        nextQuestion.textNumberingRound.text    = $"Круг {(nextQuestion.counter / 15) + 1}";
        nextQuestion.resurrect                  = true;
        nextQuestion.lose          = false;
        nextQuestion.timeOnAnswers = 0;
        nextQuestion.NextQ();



        game.GetComponent <ToggleSelect>().enabled        = true;
        nextQuestion.GetComponent <Button>().interactable = true;
        blackout1001.SetActive(true);
        Invoke("OffBlackout1001", 1);
        youDied.gameObject.SetActive(false);
        nextQuestion.InreractableAllToggles(true);
    }