local vkeys = require('vkeys')
local toggle = false
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(0) end
while true do
wait(0)
if wasKeyPressed(0x72) then
toggle = not toggle
end
if not sampIsCursorActive() then
if toggle then
printStringNow("Flood LBUTTON Activated", 100)
wait(10)
setVirtualKeyDown(vkeys.VK_LBUTTON, true)
wait(10)
setVirtualKeyDown(vkeys.VK_LBUTTON, false)
end
end
end
end