public void GemsCheck()
 {
     if (GemsCount < 4)
     {
         GemsCount   += 1;
         Gemstxt.text = GemsCount.ToString();
         SoundSource.TakeGemsSound();
     }
 }