Mute audio in every scene problem

Hello everybody,
I am new in Unity and I need your help. I wanted mute all sounds in every scene so I made Master AudioMixer and set this audiomixer as output for every audio source. I have got game with 3 scenes and I have mute and unmute button in first and last third scene. If I mute game in first scene in third scene it shows me unmute button instead mute button although music doesnt play. Here is my script in which doesnt work start method and image.
Thanks for your reply I will appreciate it.

  public GameObject muteButton;
    public GameObject normalButton;
    public AudioMixer masterMixer;
    private float muteFloat = -80f;
    private float normalFloat = 0f;

    private void Start()
    {
        if (masterMixer.Equals(-80f))
        {
            muteButton.SetActive(true);
            normalButton.SetActive(false);
        }
      else if (masterMixer.Equals(0))
        {
            muteButton.SetActive(false);
            normalButton.SetActive(true);
        }
    }


    public void SetMusicMute()
    {
        masterMixer.SetFloat("musicVolume",muteFloat);
    }

   public void SetMusciNormal()
    {
        masterMixer.SetFloat("musicVolume", normalFloat);
    }

90920-mutebutton1.png

It was switched,but i have already fixed it. Anyway thank you very much. @Joe-Censored