Common Problems

This section is intended for problems you may be experiencing at the moment. Please browse the list and check if you identify your problem. If your problem persists, don't hesitate to contact us from the Discord community by opening a ticket.

List of common problems

Weapons animation bug / is different

It's usually not a bug, but a conflict with another script that plays an animation when the weapon is in your hands.

To find out if it's a conflict, stop the ux_dynamicweapons resource and try again. If the animation is still active, browse your scripts to identify which one is playing the animation and disable the animation of the script in question.

If you have OX Inventory, go to init.lua in ox_inventory, identify the line:

weaponanims = GetConvarInt('inventory:weaponanims', 1) == 1,

and replace it with:

weaponanims = false,
Weapons not displayed on torso

If the weapons are not displayed correctly on the torso, the problem is probably due to a faulty configuration or a poorly adapted or non-adapted inventory. We recommend that you read the section on adapting the inventory script.

Last updated