Hoping this is an easy one, but I can’t find a solution: As the title says, I’m trying to have my text label show the tenths position consistently. I’m using a timer (stopwatch actually) that shows tenths of a second, and using math.floor:
while player.ParkStatus.Value == "RunningDownhill02" and GUI.CurrentRunTime.Value < 60.1 do
GUI.CurrentRunTime.Value = GUI.CurrentRunTime.Value + .1
GUI.ImageLabel.TextLabel.Text = math.floor(GUI.CurrentRunTime.Value * 10) / 10
wait(.1)
end
The result works for all but the whole seconds, because it doesn’t show the zero:
Yet another example of how epic this community is. Perfect solution in moments. Joritochip, your concatenate solution would likely work also, but the string.format is perfect for me. This works flawlessly: