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

# UI toggled

> Hide or show your own UI when the shop UI is toggled.

Useful to hide/show your UI when the shop UI is toggled.

## Shop UI activated

```lua theme={null}
RegisterNetEvent("shops_creator:ui:show", function()
    -- Disable your UI here with your own code
end)
```

## Shop UI disabled

```lua theme={null}
RegisterNetEvent("shops_creator:ui:hide", function()
    -- Enable your UI here with your own code
end)
```

<Note>
  Place this code in the file `integrations/cl_integrations.lua` of the script, at the bottom of the file on new lines.
</Note>


## Related topics

- [Client](/shops-creator/client/index.md)
- [Duty status toggled](/jobs-creator/client/duty/duty-status-toggled.md)
- [Vehicle locked/unlocked](/vehicles-keys/client/vehicle-locked-unlocked.md)
- [Duty](/jobs-creator/client/duty/index.md)
