autohotkey spacebar script ; Download autohotkey at http://www.autohotkey.com/ ; Make a new .txt file ; Paste this whole thing in that .txt file ; Change the file extension to .ahk, the icon should now be green with an H. ; Run the ahk file ; Press end to toggle the spacebar spam on and off. ; In case you don't see file extensions like .txt you may need to enable them, google how to do it for your windows version. #NoEnv SetTimer, spamSpace, 5 autohotkey spacebar script How to get it for free? autohotkey spacebar script SetControlDelay -1 End::Toggle := !Toggle ; Press end to toggle script on/off spamSpace: if (!Toggle) return send {space} return autohotkey spacebar script