I want to make a day and night cycle. I would like it so it takes 600 seconds for it to turn into night, then day, etc. I would also like it so the sun goes down when its transitioning into night and same for the moon.
Script
while true do lighting:SetMinutesAfterMidnight(lightning:GetMinutesAfterMidnight() + 0.75) wait(600) end
Issue
I got this of a tutorial. I believe this is outdated because the word “lighting” is unknown. The video was made in 2016 so I’m pretty sure its the issue.
I’m trying to find the Day/Night cycle tutorial on the developer.roblox.com site, but I think the link has been changed.
There used to be scripts in there for day/night cycles, as well as streetlights that turned on/off at certain times.
local lighting = game.Lighting
local upd = 2 -- Keep adjusing this until you find the right time.
while wait(upd) do
lighting.ClockTime = lighting.ClockTime + 0.01
end
This works. Thanks! But I changed the time to .000001 and it took like 15 seconds to go down. Are you sure it will take 600 seconds for the sun to go down and 300 seconds for the moon to go down? Sorry for not being specific about the time of night. I kind of forgot.
Hi there! Making a day and night cycle is as easy as pie, I’d also recommend finding an up-to-date tutorial when you search because I am 100% sure there’s one out there.
Try the following ServerScript code out for size:
local lighting = game:GetService("Lighting")
while wait(2) do
lighting.ClockTime = lighting.ClockTime + 0.01
end
Happy scripting! nino133
PS. You can change the +0.01 part to a higher number if you want the time the day time to go faster.