; ClickForYou v1.0 by TimeWaster ; do what ever you want with this script. Dim $primary Dim $secondary Global $doit HotKeySet("{PAUSE}", "TogglePause") $k = RegRead("HKEY_CURRENT_USER\Control Panel\Mouse", "SwapMouseButtons") Func TogglePause() $doit = NOT $doit EndFunc While 1 if $doit then If $k = 1 Then $primary = "right" $secondary = "left" Else $primary = "left" $secondary = "right" EndIf $pos = MouseGetPos() MouseClick($primary, $pos[0], $pos[1], 1) endif sleep(20) WEnd Exit