> For the complete documentation index, see [llms.txt](https://docs.av-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.av-scripts.com/guides/house-robbery/weather.md).

# Weather

By default, the weather system used is [AV Weather](https://av-scripts.tebex.io/package/5618745), if you don't own it then go to **client/editable/\_weather.lua** and place your own weather exports/events inside Weather() function. \
\
Example for **qb-weathersync**:

```lua
function Weather(freeze)
    if freeze then
        -- Freeze time
        TriggerEvent('qb-weathersync:client:DisableSync')
    else
        -- Unfreeze time
        TriggerEvent('qb-weathersync:client:EnableSync')
    end
end
```
