FAQ / Troubleshooting

  • Q: Console shows @litz_radialmenu/client/bridge.lua:10: No such export getSharedObject in resource A: You have ESX-specific code in bridge.lua, but your server isn’t running a properly named/loaded es_extended. Open client/bridge.lua, delete everything, paste the correct framework snippet from the Installation page, save, and restart the resource.

  • Q: Some items don’t show up in the menu. A: Check if they’re restricted by jobs. If you’re not in the correct job, you won’t see them. Also confirm there are no script errors in the console.

  • Q: How do I add new categories/submenus? A: In items.lua, simply add a new entry to the Items array. Give it a unique label, icon, and optionally a submenu

  • Q: How do I execute custom commands? A: In the action function, call ExecuteCommand('yourCommand') or run any other client code (e.g., TriggerEvent(), print(), etc.).

  • Q: Can I change the default key from X to something else? A: Yes—just update Config.defaultMapper in config.lua. You may also need to re-register the new key mapping in your script or via FiveM’s built-in keybinding system.

  • Q: Will this script conflict with other radial menu resources? A: Potentially. If you already have a resource that uses the same command or key mapping, you may need to change Config.commandName or defaultMapper to avoid overlap.

⚙️Commands & Event Triggers

Last updated