You couldn't have found one by looking on google? Here. I won't take any credit for it, as (I believe) Lokeeh made it.
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
; iloveesl
NRA := 1
; SS
^!p::Suspend
; NR
~LButton::
while GetKeyState("LButton") & NRA
{
DllCall("mouse_event", uint, 1, int, 0, int, 3, uint, 0, int, 0)
Sleep, 15
DllCall("mouse_event", uint, 1, int, 0, int, 4, uint, 0, int, 0)
Sleep, 5
}
return
; Nades
~MButton::
if GetKeyState("LButton")
{
NRA := 0
Sleep, 3000
MouseClick, Left,,,,, U
NRA := 1
}
return
numpad5::ExitApp