lighting speed pastebin script local minutesAfterMidnight = 6 * 60 --Change the six to any number up to 24 print ("Day/Night cylce made by script2lu") while true do --Infinite loop game.Lighting:SetMinutesAfterMidnight(minutesAfterMidnight)--sets time of day to value of minutesAfterMidnight minutesAfterMidnight = minutesAfterMidnight + 1 -- Adds 1 to minutesAfterMidnight wait(0.25) --Change the speed of the day/night cycle end lighting speed pastebin script