Try this script:
local function formatnumber(number)
local formatted = string.format("%02i",number)
return formatted
end
timer.Text = formatnumber(hours).." hours and "..formatnumber(seconds)
Refer this link
Try this script:
local function formatnumber(number)
local formatted = string.format("%02i",number)
return formatted
end
timer.Text = formatnumber(hours).." hours and "..formatnumber(seconds)
Refer this link