Triggerbot

A CSGO AHK color triggerbot

This script should only be used by disciplined cheaters and may be the major factor if you got overwatch banned

This script allows you to use a color triggerbot in CSGO without risking a VAC ban.

Please make sure to check out the compatibility of this script here.

Threshold = 20
*~$e::
MouseGetPos, MouseX, MouseY
PixelGetColor, Color1, (MouseX+2), (MouseY+2)
StringSplit, Colorz, Color1
Color1B = 0x%Colorz3%%Colorz4%
Color1G = 0x%Colorz5%%Colorz6%
Color1R = 0x%Colorz7%%Colorz8%
Color1B += 0
Color1G += 0
Color1R += 0

while (GetKeyState("e", "P"))

When the script is opened and the hotkey is being held (E in this case) , the script will attempt to shoot every time your crosshair is on the enemy.

Change "e" to your desired activation hotkey in line 2 ("*~$X" with "X" representing the key of your choice. For example if you want the activation key to be the "F" key you replace "*~$e" with "*~$f").

Change "e" in line 13 to your hotkey changed on the second line ("X" with "X" representing the key you replaced in line 2. For example, if you changed the activation hotkey on line 2 to the "F" key you replace "e" with "f".

m::
exitapp
return

When this key is pressed (M in this case) the script will be terminated and will have to be manually re-opened.

Change "m" to your desired terminate hotkey in line 1 ("X" with "X" representing the key of your choice. For example if you want the termination key to be the "F" key you replace "m" with "f").

Last updated

Was this helpful?