Hey I use QB Framework and Im trying to disable the Classic GTA Weapon Wheel. How do I disable the weapon wheel?
You can use SetPedCanSwitchWeapon(PlayerPedId(), false)
1 Like
where do you put this though?
You would place it in a client script. Example:
function disableWeaponSwitching()
SetPedCanSwitchWeapon(PlayerPedId(), false)
end
disableWeaponSwitching()