// Background
    void BackgroundActivated()
    {
        Background.SetActive(true);
        GameObject     BackgroundParticles = GameObject.Find("BackgroundParticles");
        ParticleScript particleScript      = BackgroundParticles.GetComponent <ParticleScript>();

        particleScript.ToggleActive();
        Background.GetComponent <AudioSource>().Play();
    }