> For the complete documentation index, see [llms.txt](https://gabjeksuper.gitbook.io/fiveguard-configuration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gabjeksuper.gitbook.io/fiveguard-configuration/block-expolits/block-crash-methods/before-reading/lumia.md).

# Lumia

Add this function to prevent Lumia crash

```
AddEventHandler('entityCreating', function(entity)
    local src = NetworkGetEntityOwner(entity)
    local modelprop = GetEntityModel(entity)
    if modelprop == 1885233650 or modelprop == 310817095 then
    print(src, "prevented from crashing lumia", modelprop)
    CancelEvent()
    end
end)
```
