local lighting = game:GetService("Lighting")
local minutes = 7 * 60
while wait() do
lighting:SetMinutesAfterMidnight(minutes)
minutes = minutes + 1
end
Please help, I have been trying to solve this for a while now
I searched “lighting” and I found an “AutoLighting” property in another script of mine that was enabled. I disabled it and now it works fine. Finally lmao.