This commit is contained in:
Nordi98 2025-07-14 23:08:57 +02:00
parent ad8fdbd162
commit 04dadc2d96
7 changed files with 12 additions and 12 deletions

View file

@ -0,0 +1,6 @@
RegisterCommand("getweaponhash", function()
local playerPed = GetPlayerPed(-1)
local hasWeapon,pedWeapon = GetCurrentPedWeapon(playerPed)
print("Weapon Hash: " ..pedWeapon)
end)