Steam Saliens game Aimbot
I got bored and basically just made an Aimbot for the minigame for lols. It currently is meant for resolution of 1920x1080 and the game on the left monitor or main monitor. Enjoy

Code:
IF NOT A_IsAdmin
{
Run *RunAs "%A_ScriptFullPath%"
ExitApp
}
#MaxThreadsPerHotkey, 2
CoordMode, Pixel, Screen
#singleInstance, Force
toggle = 0
F8::
SoundBeep
Toggle := !Toggle
While Toggle
{
PixelSearch, colourx, coloury, 50, 50, 1900, 796, 0x278DDC, 0, Fast RGB
IF ErrorLevel = 1
{
sleep, 1000
}
IF ErrorLevel = 0
{
Click, %colourx%, %coloury% Left, 1
}
}
return

.