Reminds me of those time-lapse videos!
Hi,
So are you saying in the example place, if I changed the script MainScript, to a local script, the effects including the changes in Lighting, would only be seen client side?
Also is the example .rbxl up to date?
Thanks
The Example Place has been updated with the Syncing. Changing the Script to a Local Script is recommended as it runs much more smoother and indeed will only be seen in the client.
Is there a way to change the lighting depending on whether its night or not too while using this?
Iām having trouble understanding your question? explain more.
If there is a way that when it rains during the day you have a different customised environment and if it rains at night you have a different customised environment than during the day, but it doesnāt change the environment all at once but a smooth transition.
I use a day night cycle script with this, and while looking through the script I can see it changes lighting depending on the weather so I was wondering if the lighting could be changed depending on the time of day like darker at night and regular at day
If Iām not wrong these are features you implement yourself? This module is used to visualize different environments, its only job is to change between different weather types, this can easily be achieved with If Statements
Example
local Lighting = game:GetService("Lighting")
local MorningTimeStart, MorningTimeEnd = 6.4, 17.7
function isMorining() : boolean
return Lighting.ClockTime >= MorningTimeStart and Lighting.ClockTime <= MorningTimeEnd
end
Lighting:GetPropertyChangedSignal("ClockTime"):Connect(function()
if isMorining() then
print("Morning")
else
print("Night")
end
end)
Thanks for the help, Iāll implement it in a bit and test it out.
NEW UPDATE! ( v2.1.0 / 4/4/2026 )
- Documentation improvements.
- Public Function description and assistance.
- Weather Schema.
- Tutorials (on Sever ā Client) replication.
- Much more user friendly.
- Modular Improvements. (Version History)
Weāve now reached a Two year mark! I thank anyone who still uses this module for their projects! Iāve improved the module to improve its QoL, and accessibility.
Hello? Dose this contain scripts?
No the resource given doesnt contain any scripts only module scripts.
@jakeboygamer64 Ok. iāll see what i can do then.
how about an open source testing place, with the latest updates⦠![]()
Iāve just added a testing place now.
Hey thereās a couple of really annoying bugs with this.
Really, whatās happening?
Iāve not encountered any so it must be the setup..
The model scripts are showing errors I can seen you some screenshots.
Please send them. (character limit)