private void Awake()
    {
        if (Instance != null)
        {
            Destroy(gameObject);
        }
        Instance = this;

        PlayerScore = 0;
        RivalScore  = 0;
        IsFinishedResultTimeline = false;
    }
 private void OnDestroy()
 {
     Instance = null;
 }