of     1   

FancyPig19
#221222453Thursday, July 13, 2017 5:38 PM GMT

I wrote this day/night cycle script: minutesAfterMidnight = 600 while wait(1) do minutesAfterMidnight = minutesAfterMidnight + 1 game.Lighting:SetMinutesAfterMidnight(minutesAfterMidnight) if game.Lighting.TimeOfDay == ("18:00:00") then game.Lighting.OutdoorAmbient = Color3.new(0,0,0) game.Lighting.Brightness = 0.7 script.Parent.DayLoop:Pause() script.Parent.NightLoop:Play() end if game.Lighting.TimeOfDay == ("6:00:00") then game.Lighting.OutdoorAmbient = ####################### game.Lighting.Brightness = 1 script.Parent.NightLoop:Pause() script.Parent.DayLoop:Play() end end It works fine, except for the second if statement. At six AM, nothing changes. I have no idea what's wrong ,and if anyone could help me that would be great. Thanks!
FancyPig19
#221222562Thursday, July 13, 2017 5:40 PM GMT

minutesAfterMidnight = 600 while wait(1) do minutesAfterMidnight = minutesAfterMidnight + 1 game.Lighting:SetMinutesAfterMidnight(minutesAfterMidnight) if game.Lighting.TimeOfDay == ("18:00:00") then game.Lighting.OutdoorAmbient = Color3.new(0,0,0) game.Lighting.Brightness = 0.7 script.Parent.DayLoop:Pause() script.Parent.NightLoop:Play() end if game.Lighting.TimeOfDay == ("6:00:00") then game.Lighting.OutdoorAmbient = ####################### game.Lighting.Brightness = 1 script.Parent.NightLoop:Pause() script.Parent.DayLoop:Play() end end
FancyPig19
#221222629Thursday, July 13, 2017 5:41 PM GMT

I hate Roblox sometimes. goo.gl/uNvgQB
FancyPig19
#221222656Thursday, July 13, 2017 5:42 PM GMT

^ Link to script.
doggy00
#221222733Thursday, July 13, 2017 5:43 PM GMT

Errors in output? Also if it keeps censoring it then it's easier to just post it on Pastebin and give us the end of the link.
doggy00
#221222759Thursday, July 13, 2017 5:44 PM GMT

Or shorten it like that, whatever works :P
doggy00
#221222937Thursday, July 13, 2017 5:47 PM GMT

This may not work, but maybe setting minutesAfterMidnight to 0 once it reaches 1440 (because that's how many minutes are in a day)?
FancyPig19
#221232263Thursday, July 13, 2017 7:50 PM GMT

No error in output.
FancyPig19
#221237243Thursday, July 13, 2017 8:39 PM GMT

Bump...
FancyPig19
#221239749Thursday, July 13, 2017 9:04 PM GMT

Bump
FancyPig19
#221272090Friday, July 14, 2017 3:30 AM GMT

Bump...........
doggy00
#221272650Friday, July 14, 2017 3:37 AM GMT

Did you try setting minutesAfterMidnight back to 0 like I mentioned above? If that doesn't work then I don't know what's wrong with the script.
FancyPig19
#221272950Friday, July 14, 2017 3:41 AM GMT

Yeah.. Tried it.
Jon_TheDev
#221273180Friday, July 14, 2017 3:44 AM GMT

Put 'minutesAfterMidnight = minutesAfterMidnight + 1' after 'game.LIghting:SetMinutesAfterMidnight(minutesAfterMidnight) --Jon_TheDev
FancyPig19
#221276298Friday, July 14, 2017 4:27 AM GMT

Problem solved. Thanks guys!
WillieTehWierdo200
#221282023Friday, July 14, 2017 6:04 AM GMT

It was because you forgot the leading 0 when checking the TimeOfDay string for 6am. "6:00:00" vs "06:00:00"

    of     1