Fivem Turn-off In-Game Background Sounds
If your server does not have an npc, but if the sounds such as pickup trucks and horns bother you, follow the steps below.Turning Off In-Game Background Sounds
Paste this code at the bottom of any client.lua and restart the script
-- Client Code --
If your server does not have an npc, but if the sounds such as pickup trucks and horns bother you, follow the steps below.Turning Off In-Game Background Sounds
Paste this code at the bottom of any client.lua and restart the script
-- Client Code --
Code:
CreateThread(function()
StartAudioScene("CHARACTER_CHANGE_IN_SKY_SCENE");
SetAudioFlag("PoliceScannerDisabled",true);
end)