1
0
Fork 0
forked from Simnation/Main
Main/resources/[weapons]/[Scripts]/nordi_weapon_handling/command.lua

6 lines
190 B
Lua
Raw Normal View History

2025-07-14 22:58:10 +02:00
RegisterCommand("getweaponhash", function()
local playerPed = GetPlayerPed(-1)
local hasWeapon,pedWeapon = GetCurrentPedWeapon(playerPed)
print("Weapon Hash: " ..pedWeapon)
2025-06-07 08:51:21 +02:00
end)