> For the complete documentation index, see [llms.txt](https://peacescript.gitbook.io/peacescript/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://peacescript.gitbook.io/peacescript/peace-propsmanager/unlocked-file/server/custom.md).

# Custom

```
CreateThread(function()
    if LoadFrameworkConfig() ~= 'Custom' then return end
    -- Get all players
    function GetPlayer()
        return "NOTFOUND"
    end

    -- Get the player's citizen ID
    function GetCitizenId(player)
        return "NOTFOUND"
    end

    -- Get player permission
    function GetPlayerPermission(player)
        return "NOTFOUND"
    end
end)
```
