is it possible through a script that all weapons on vehicles lose function? I would like all vehicles to have no weapons. I have already searched for it and tried around but I have not come to the result. does anyone know something?
Hi , maybe this script can help you: [Release] Model Blacklist v1.1
Give it a try and let me know.
Also look at the replies there, some people shared their codes just in case if the script is not working for you.
You will just have to make some changes to the code.
Citizen.CreateThread(function()
while true do
Citizen.Wait(1000)
local playerPed = GetPlayerPed(-1)
if IsPedInAnyVehicle(playerPed, false) then
DisablePlayerVehicleRewards(playerPed)
end
end
end)