local lastState = false
function main()
while not isSampAvailable() do wait(0) end
while true do wait(0)
local state = isButtonPressed(1, 6)
if lastState ~= state then
lastState = state
sampSendChat((state and 'Достал' or 'Убрал') .. ' винтовку')
end
end
end