> For the complete documentation index, see [llms.txt](https://docs.hamz.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hamz.dev/hamz-cad-in-game/installation/3.-fivem-resource-final-step/more-info-on-the-config.lua.md).

# More info on the Config.lua

```lua
CONFIG.PERMISSIONS = {
    CIVLIAN = true,
    POLICE = {
        ''
    },
    FIRE_EMS = {
        ''
    }
}
```

The permission system for the CAD works as follows:

* If the variable is set to TRUE, it'll allow all players to use that dashboard.
* If you set the variable as follows. (In this example we use the CIVILIAN dashboard)

```lua
CIVILIAN = {
   'DISCORD_ROLE_ID',
   'DISCORD_ROLE_ID' 
}
```

* The above permission will give access to the Civilian dashboard to users that have the mentioned discord role.&#x20;
