local a = false
function main()
while not isSampAvailable() do wait(0) end
while true do
wait(0)
if testCheat("NOH") then
a = not a
printStyledString(tostring(a), 500, 5)
end
if a and getCurrentCharWeapon(PLAYER_PED) == 0 then
setGameKeyState(17, 0)
end
end
end