So imagine I want my code to count in 0.25, and I want it to be like: 0.00, 0.25, 0.50... but it's currently like: 0, 0.25, 0.5... That part of my code like this:
if (Score >= 0 && Score < 10.00){
Score += 0.25
HighScoreLabel.text = "The Score is \(Score)"
}