CSGO AHK Macro
  • Introduction
  • Installation & Usage Guide
  • Features
    • Script against VAC
    • Keybinds
    • Recoil Macros
    • Bunny hop
    • 180 turn around
    • Right peek assist
    • Left peek assist
    • Fast jump throw
    • Fast bomb drop
    • Quick-switch fire
    • Auto pistol
    • Auto strafe
  • Additional scripts
    • Triggerbot
    • Legit aimbot
Powered by GitBook
On this page

Was this helpful?

  1. Additional scripts

Triggerbot

A CSGO AHK color triggerbot

PreviousAuto strafeNextLegit aimbot

Last updated 3 years ago

Was this helpful?

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 .

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").

here