This script is when you click your LMB it drags your mouse cursor down but I want to know how can I set it so it can drag my mouse cursor up.Thanks
Heres the script:


#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

Insert::ExitApp