Hi! So, I’m trying to change the tint color, based on the day/night cycle.
I’ve tried changing a bit on the script and looked on dev hub, but there’s no similar thing to this.
This is day time, the tint color is to the red side as you can see in the proberties.
elseif game.Lighting.ClockTime<=7 and game.Lighting.ClockTime>=17 then…
This will never be true because a value can’t be less than or equal to 7 AND more than or equal to 17 at the same time. You can either change the AND to OR or just use else without any additional checks.