Bunny hop

CSGO bunny hop made in AHK

This feature allows you to bunny hop (sort of) in CSGO by holding space bar instead of practice using scrollwheel.

This feature was achieved by creating a macro that spams your space bar.

Due to CSGO mechanics, this bunny hop can not work perfectly and will never be on the same level as internal bunny hop cheats

;Bhop
~LAlt::
Hotkey, *~$Space, Toggle
SoundPlay, %A_ScriptDir%\sounds\12.mp3
return
*~$Space::

When the toggle hotkey is pressed ( Left Alt in this case), the script will play 12.mp3 from the "sounds" folder to inform that the feature is activated. After that, holding space bar will cause the macro to spam space bars instead of not doing anything in CSGO.

The feature can be toggled on/ off using the hotkey (Left Alt in this case). When toggled off, the action of holding space bar in CSGO will not be replaced by the script, leading to the local player jumping once and not doing anything.

Change "~LAlt" to your desired toggle hotkey ("~X" with "X" representing the key of your choice. For example if you want the toggle key to be the "F" key you replace "~LAlt" with "~F")

Last updated

Was this helpful?