The point here, Time.deltaTime returns values smaller then 1, so rounding it before addition will give you tons of toubles.
Best thing to do here would be to store the score as a float and only round it before displaying, like
score.ToString("F0");
in C#
↧