|
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! |
|
|
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 |
|
|
I hate Roblox sometimes.
goo.gl/uNvgQB
|
|
|
doggy00Join Date: 2011-01-11 Post Count: 3571 |
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. |
|
doggy00Join Date: 2011-01-11 Post Count: 3571 |
Or shorten it like that, whatever works :P |
|
doggy00Join Date: 2011-01-11 Post Count: 3571 |
This may not work, but maybe setting minutesAfterMidnight to 0 once it reaches 1440 (because that's how many minutes are in a day)? |
|
|
|
|
|
doggy00Join Date: 2011-01-11 Post Count: 3571 |
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. |
|
|
|
Put 'minutesAfterMidnight = minutesAfterMidnight + 1' after 'game.LIghting:SetMinutesAfterMidnight(minutesAfterMidnight)
--Jon_TheDev |
|
|
Problem solved. Thanks guys! |
|
|
It was because you forgot the leading 0 when checking the TimeOfDay string for 6am.
"6:00:00" vs "06:00:00" |
|