๐Ÿ“Installation

Script Download

1

Log Into CFX Portal

CFX Portal

2

Granted Assets

Navigate to the assets page to find the resource.

Script Setup

1

Updated Commands

If you are using illenium-appearance make sure to head to illenium-appearance/server/server.lua and replace these commands with these.

lib.addCommand("clarstuckprops", { help = _L("commands.clearstuckprops.title") }, function(source)
    local src = source
    TriggerClientEvent("illenium-appearance:client:ClearStuckProps", src)
    Wait(500)
    TriggerClientEvent("Pug:ReloadGuns:sling", src)
end)
lib.addCommand("reloadskin", { help = _L("commands.reloadskin.title") }, function(source)
    local src = source
    TriggerClientEvent("illenium-appearance:client:reloadSkin", src)
    Wait(500)
    TriggerClientEvent("Pug:ReloadGuns:sling", src)
end)
2

Setup Complete

Ensure the script and it will work perfectly as intended.

Additional Information

You can run this event to clear stuck items on player without removing sling items.

TriggerEvent("Pug:ReloadGuns:sling")

Last updated