RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Write me a script that makes the game time run like it does in the real world"
-- server script local lighting = game:GetService("Lighting") while true do local realTime = os.date("*t") local hours = realTime.hour local minutes = realTime.min local seconds = realTime.sec local inGameTime = (hours * 60) + minutes + (seconds / 60) lighting:SetMinutesAfterMidnight(inGameTime) wait(1) end