> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nonefivem.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Commands

<Info>
  Default commands can be found in `no-housing/config/client/commands.lua`. You can change
  or completely remove these commands.
</Info>

### Default

```lua theme={null}
RegisterCommand("furniture", function()
    TriggerEvent("no-housing:furniture:ui")
end)

RegisterCommand("realestate", function()
    TriggerEvent("no-housing:realestate:show")
end)

RegisterCommand("create", function()
    TriggerEvent("no-housing:housemanager:create")
end)

RegisterCommand("edit", function()
    TriggerEvent("no-housing:housemanager:edit")
end)

```
