Time and Weather
You can control both time and weather through your script, making it possible to set the perfect lighting for your creative endeavours in the game world.
Controlling the Time of the Day
You can control the time and the light for your shots to the second in GTA V. You can specify the exact time of the day with the native functionSet the time of the day to 15:45:
Function.Call(Hash.SET_CLOCK_TIME, 15, 45, 00);

Controlling the Weather
You can choose among the following weather options using the native function“CLEAR”
“EXTRASUNNY”
“CLOUDS”
“OVERCAST”
“RAIN”
“CLEARING”
“THUNDER”
“SMOG”
“FOGGY”
“XMAS”
“SNOWLIGHT”
“BLIZZARD”
Set the weather to blizzard:
Function.Call(Hash.SET_WEATHER_TYPE_NOW_PERSIST, "BLIZZARD");
