I have this time until next hour script, and it works, I just need to format it into HH:MM:SS. Here’s my script.
local nextHour = os.date("!*t", os.time() + 3600)
local nextHourSeconds = os.time({
year = nextHour.year, month = nextHour.month, day = nextHour.day,
hour = nextHour.hour, min = 0, sec = 0
})
while true do
local secondsUntilNextHour = nextHourSeconds - os.time()
print(secondsUntilNextHour)
wait(1)
end