Does AHK Work still?
I go on cs go and nothing happens when I hold space but when I go on my google chrome or something i c a n b a r e l y t y p e w i t h i t b u t i t s h o w s i s w o r k i n g
Anyone know how to fix if theirs a way?
Some work like Can't stop the bhop because the sleep time could be off.
It should still work I just tested it might be the script your using try this code instead:
*~$Space::
Loop
{
GetKeyState, SpaceState, Space, P
If SpaceState = U
break
Sleep 6
Send, {Blind}{Space}
}
Return