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

# Troubleshooting

> Fixes for common NEX UI Pack issues.

## The default ox\_lib UI still shows up

The most common causes:

1. **`nex_uipack` isn't running.** From F8:

   ```
   lua print(GetResourceState('nex_uipack'))
   ```

   It should print `started`. If it prints `missing` or `stopped`, fix `server.cfg` and restart.

2. **You're running upstream `ox_lib`, not our fork.** Only our fork at [github.com/nexdevelopmentx/ox\_lib](https://github.com/nexdevelopmentx/ox_lib) activates the redesigned UI.

3. **Wrong load order.** `ox_lib` must start **before** `nex_uipack`:

   ```
   ensure ox_lib
   ensure nex_uipack
   ```

## Folder is named ox\_lib-main

GitHub's ZIP download adds the branch name to the folder. Rename it to exactly `ox_lib` before starting the server — the resource name must match.

## I have two ox\_lib folders

Don't. Run a single `ox_lib` resource (the fork). Two resources with the same name will give you unpredictable behaviour.

## I stopped nex\_uipack and now there's no UI at all

`ox_lib` should fall back to its default UI on the next call. If it doesn't, restart `ox_lib` and try again.

## Still stuck?

Grab your server console log and reach out via [Support & contact](/general/support).
