⚠️ Common Issues
Item is not usable
Make sure the item spawn name in your inventory matches the one you added in your clothing folder
file exactly.
Example: If your clothing file uses
'skull_chain'
, your inventory item must also be named'skull_chain'
.
✅ Correct
['skull_chain'] = {
label = 'Skull Chain',
...
}
❌ Incorrect (won’t work)
['skullchain'] = {
...
}
Last updated