local key = require 'vkeys'
function main()
sampRegisterChatCommand('pressZ', ZZZ)
end
function ZZZ()
a = not a
if a then
sampAddChatMessage('worked', 0x800080)
lua_thread.create(function()
while a do
setVirtualKeyDown(0x5A, true)
wait(120000)
setVirtualKeyDown(0x5A, false)
end
end)
else
sampAddChatMessage('not worked', 0x800080)
end
end