autohotkey send spacebar ; 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 send spacebar How to dowload it? autohotkey send spacebar SetControlDelay -1 End::Toggle := !Toggle ; Press end to toggle script on/off spamSpace: if (!Toggle) return send {space} return autohotkey send spacebar