i have one problem when i startet the script i have no weapon
Clear cache
You need to change
Citizen.CreateThread(function()
while ESX == nil do
TriggerEvent(āesx:getSharedObjectā, function(obj) ESX = obj end)
Citizen.Wait(0)
end
end)
to
Citizen.CreateThread(function()
while ESX == nil do
TriggerEvent(āesx:getSharedObjectā, function(obj) ESX = obj end)
Citizen.Wait(0)
end
while ESX.GetPlayerData().job == nil do
Citizen.Wait(10)
end
PlayerData = ESX.GetPlayerData()
end)
Whenever I use a parachute it deactivates it and plays the āput gun backā animation. Leading to me losing the chute and fall to death. What do i have to change in the script to avoid this?
you cant have any weapons on your character while parachutingā¦not sure if theres a fix for this. Just clear your loadout before skydiving
There is another āholsterā script here, where you can have all your weapons with you. I want to jump down as special force and if I land without a weapon the bad guys could find that very amusing. 
Has anyone converted this to function without ESX?
is there a way to edit script so you can have 2 weapons on your back
please answer him! 
Im just going to go ahead and say this. If you canāt remove the ESX from this script then you probably should not be running a server. ESX is not heavily implemented in this script and it should only take a min or two to remove it. Its honestly hilarious how many people come in here and cant remove it. I guess only the worthy will use this script without ESX⦠or someone willing to spend a very minute amount of time learning the basics of Lua.
Iām just going ahead and say this. What an amusing and absolutely non existing correlation between having knowledge of ESX and deserving to run a server. Thatās almost adorable. The minute you used for writing that text could have been used to get rid of the ESX part - according to you. Spend learning manners, will help you more.
It still doesnt work for me I just copied and pasted this
Citizen.CreateThread(function()
while ESX == nil do
TriggerEvent(āesx:getSharedObjectā, function(obj) ESX = obj end)
Citizen.Wait(0)
end
while ESX.GetPlayerData().job == nil do
Citizen.Wait(10)
end
PlayerData = ESX.GetPlayerData()
end)
Is that correct or am I still wrong?
Wondering how I could get rid of the rifle racking portion instead of the holster
Hi, it could be me being an idiot but Ive installed on my server could anyone help me with the config settings? I cant seem to get things to work I want the weapons on back, not able to draw large weapons and such but the weapons do not go on your back, the /holster seems to work but you can just select whatever weapon you want on the weapon wheel with no animation, I did try changing some things from false to true but still doesnt work, whats everyone settings?
Iāve modified this resource and made it non-esx for those who want that. Iāve also added more to the config and changed some little stuff to make it work smoother.
Works!
I guess some inventories wonāt work. for some reason Chezzaās inventory wonāt work with this incase someone canāt pull out their weapons from weapon wheel.
How do I remove the quickdraw or make it not have a keybind? Z is already in use and I donāt need it.
Just Replace This:
RegisterNetEvent(āesx:setJobā)
AddEventHandler(āesx:setJobā, function(job)
PlayerData.job = job
end)
With That:
AddEventHandler(āonResourceStartā, function(job)
PlayerData.job = job
end)
That fixxed it for me
Is there a way to change holster model? I have new EUP and want my holster (Chain 13) in the holster script but when I change smthn in the script it most likely wont work -_-
Hello! Great script! I have just recently bought a holster / belt pack for fiveM. Whenever I use this script and the holster it switches back to the basic GTA holster and back again to the actual holster Iām wearing when I secure my gun again. Iāve been looking in the client.lua file along those lines but I canāt find anything related to my āissueā. Do you have any solution?