How do I make the timer text show 00:04 instead of 0:4? I tried Google but nothing worked for me. Thanks!
Timer.text = string.Format("Time Survived: {0:00}:{1:00}", Mathf.FloorToInt(Health.time / 60).ToString(), Mathf.FloorToInt(Health.time % 60).ToString());