RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a easter countdown for cst time zone"
-- local script for Easter countdown in CST time zone local countdownText = script.Parent function updateCountdown() local currentTime = os.time() local easterDate = os.time({year=2022, month=4, day=17, hour=0, min=0, sec=0}) local timeRemaining = easterDate - currentTime local days = math.floor(timeRemaining / (24 * 60 * 60)) local hours = math.floor((timeRemaining % (24 * 60 * 60)) / (60 * 60)) local minutes = math.floor((timeRemaining % (60 * 60)) / 60) local seconds = math.floor(timeRemaining % 60) countdownText.Text = "Easter Countdown: " .. days .. " days, " .. hours .. " hours, " .. minutes .. " minutes, " .. seconds .. " seconds" end updateCountdown() while true do wait(1) updateCountdown() end