❔FAQ / Troubleshooting
Q: Console shows
@litz_radialmenu/client/bridge.lua:10: No such export getSharedObject in resource
A: You have ESX-specific code inbridge.lua
, but your server isn’t running a properly named/loaded es_extended. Openclient/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 theItems
array. Give it a uniquelabel
,icon
, and optionally a submenuQ: How do I execute custom commands? A: In the
action
function, callExecuteCommand('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
inconfig.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
ordefaultMapper
to avoid overlap.
Last updated