FAQ / Troubleshooting
Last updated
Last updated
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.