Skip to content

Instantly share code, notes, and snippets.

@ForNeVeR
Created August 2, 2026 16:43
Show Gist options
  • Select an option

  • Save ForNeVeR/650fb00ea99cd4167797d4866844187e to your computer and use it in GitHub Desktop.

Select an option

Save ForNeVeR/650fb00ea99cd4167797d4866844187e to your computer and use it in GitHub Desktop.
Endacopia beat the soccer ball script

Requires AutoHotkey v2. Install it, double-click the script, and you are all set.

Just time it correctly and press F5 instead of one of your next mouse clicks — this will automatically click every 650 ms (the time that I have figured out experimentally).

After you finish, press F5 again to disable the script.

Sometimes doesn't work from the first try: one time it failed for me after 69 successful kicks. Give it another try then, and eventually you will prevail.

Licensed under MIT, copyright 2015 Friedrich von Never.

#Requires AutoHotkey v2.0
#MaxThreadsPerHotkey 3
#SingleInstance
F5:: {
static Toggle := false
Toggle := !Toggle
Loop {
if (!Toggle)
break
Click
Sleep 650
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment