Skip to content

Releases: elusive-otter/Auto-Clicker

v3.1.0 - Safe Zones Added

Choose a tag to compare

@elusive-otter elusive-otter released this 24 Jun 00:09
1f59a1f

AutoClicker with GUI — v3.2.0

v3.2.0 update by elusive-otter


What's New in v3.2.0

Safe Zones — Accidental Click Protection

Auto click now checks where your cursor is before every click. If it lands in a protected area, the click is silently skipped. No more accidentally dragging windows, opening the Start menu, or clicking the taskbar mid-game.

Three toggleable protections, all ON by default:


Block title bar clicks
Detects whether the cursor is hovering over any window's title bar using Windows' own hit-test system (WM_NCHITTEST). If the cursor is on a caption/title bar area of any window — your game, a browser, anything — the click is blocked. This prevents accidentally dragging or defocusing your game window.


Block taskbar clicks
Detects the exact position and size of the Windows taskbar in real time (Shell_TrayWnd). Also catches secondary taskbars on multi-monitor setups (Shell_SecondaryTrayWnd). If your cursor drifts onto the taskbar, the click is skipped.


Block screen corners (optional, OFF by default)
Blocks a 20×20 pixel zone at each corner of your screen — covers the Start button (bottom-left), the Show Desktop button (bottom-right), and the top corners. Useful if you play in borderless windowed mode and tend to clip the corners.


How to configure

In the SAFE ZONES section of the GUI, tick or untick each checkbox. A status line below the checkboxes always shows which protections are currently active:

Protected: Title bar  ·  Taskbar

Bugs Fixed

  • Carried from v3.0.1: Auto Walk no longer self-toggles when Auto Jump is active and the GUI is focused
  • Carried from v3.1.0: Process picker no longer crashes with "Expected a Number but got a String" on exe names

Full Feature List

  • Clean GUI with always-on-top window
  • Target process filter — lock all actions to any .exe
  • Live process picker
  • Safe Zones — block clicks on title bars, taskbar, screen corners (new in v3.2.0)
  • Adjustable click interval (1ms – 5000ms)
  • Live clicks/sec display
  • Left, Right, and Middle mouse button support
  • Single and Double click modes
  • Auto Walk — holds W, releases automatically when out of target window
  • Auto Jump — presses Space on a timer, adjustable interval (100ms – 2000ms)
  • Global hotkeys

Hotkeys

Key Action
F6 Toggle autoclicker on / off
F7 Toggle auto walk on / off
F8 Toggle auto jump on / off
F9 Quit the script

Requirements


Made with AutoHotkey v2 — by elusive-otter

v3.1.0 - Lock Actions to target Process only

Choose a tag to compare

@elusive-otter elusive-otter released this 22 Jun 23:07
1f59a1f

AutoClicker with GUI — v3.1.0

v3.1.0 update by elusive-otter


What's New in v3.1.0

Target Process Filter

You can now lock all actions (auto click, walk, and jump) to a specific process so they only fire when that window is active on your screen.

  • Pick Process button — Opens a live list of every running process. Click one and hit "Use Selected" to lock onto it.
  • Manual input — You can also type the .exe name directly (e.g. RobloxPlayerBeta.exe)
  • Clear Filter — Remove the lock so actions work in any window again
  • Status label — Shows Filter: ON — RobloxPlayerBeta.exe only or Filter: OFF — works in any window

How it works

  • Auto Click — skips firing if the target window is not in focus
  • Auto Walk — releases W automatically when you switch away from the target window, re-holds it when you switch back
  • Auto Jump — skips firing Space if the target window is not in focus

Default target

The target input is pre-filled with RobloxPlayerBeta.exe for convenience. Clear it or change it to any .exe you want.


Bug Fixes carried from v3.0.1

  • Auto Walk no longer toggles itself when Auto Jump fires while the AutoClicker window is focused
  • Buttons defocus after being clicked so Space/Enter can't re-trigger them

Full Feature List

  • Clean GUI with always-on-top window
  • Target process filter — lock actions to any .exe (new in v3.1.0)
  • Live process picker (new in v3.1.0)
  • Adjustable click interval (1ms – 5000ms)
  • Live clicks/sec display
  • Left, Right, and Middle mouse button support
  • Single and Double click modes
  • Auto Walk — holds W, releases when out of target window
  • Auto Jump — presses Space on a timer, skips when out of target window
  • Adjustable jump interval (100ms – 2000ms)
  • Global hotkeys

Hotkeys

Key Action
F6 Toggle autoclicker on / off
F7 Toggle auto walk on / off
F8 Toggle auto jump on / off
F9 Quit the script

Requirements


Made with AutoHotkey v2 — by elusive-otter

v3.0.1: Update GUIDE.md with Auto Jump customization options

Choose a tag to compare

@elusive-otter elusive-otter released this 21 Jun 09:13
1f59a1f

AutoClicker with GUI — v3.0.1

v3.0.1 patch by elusive-otter


Bug Fixes in v3.0.1

Auto Walk toggling on and off by itself — FIXED

What was happening:
When Auto Jump and Auto Walk were both active while the AutoClicker window was focused, Auto Walk would rapidly toggle on and off on its own.

Why it happened:
Every time Auto Jump fired Space, Windows delivered that keypress to whatever GUI button was currently focused — which happened to be the Start Walk button. Since Space and Enter activate focused buttons in Windows, it kept clicking Walk on and off in the background.

How it was fixed:
Two changes were made to prevent this:

  • Buttons now defocus after being clicked — After pressing Start Walk or Start Jump, focus is moved to the interval input box instead. Input boxes ignore Space as a button trigger, so stray Space keypresses no longer affect anything in the GUI.

  • Auto Jump skips sending Space when the GUI is focusedDoJump() now checks if the AutoClicker window is the currently active window. If it is, the Space keypress is skipped entirely. The moment you switch focus to your game, jumps fire normally.


What's Unchanged

All v3.0.0 features remain the same:

  • Autoclicker with adjustable interval and click mode
  • Auto Walk (holds W continuously)
  • Auto Jump (presses Space on a timer with adjustable interval)
  • Status indicators for CLICK / WALK / JUMP

Hotkeys

Key Action
F6 Toggle autoclicker on / off
F7 Toggle auto walk on / off
F8 Toggle auto jump on / off
F9 Quit the script

Requirements


Made with AutoHotkey v2 — by elusive-otter

v2.0.0 - Autowalk feature added

Choose a tag to compare

@elusive-otter elusive-otter released this 21 Jun 02:44
6b89594

AutoClicker with GUI — v2.0.0

v2.0.0 update by elusive-otter


What's New in v2.0.0

  • Auto Walk — Holds the W key continuously with a single toggle
  • New F7 hotkey for auto walk toggle
  • Walk status indicator in the GUI (shows WALKING / STOPPED)
  • GUI expanded with dedicated Auto Walk section

Full Feature List

  • Clean GUI with always-on-top window
  • Adjustable click interval (1ms – 5000ms) via slider or text input
  • Live clicks/sec display
  • Left, Right, and Middle mouse button support
  • Single and Double click modes
  • Auto Walk — holds W key continuously (new in v2.0)
  • Global hotkeys (no need to focus the window)

Hotkeys

Key Action
F6 Toggle autoclicker on / off
F7 Toggle auto walk on / off
F8 Quit the script
image

Requirements

How to Use

  1. Install AutoHotkey v2
  2. Download and run autoclicker.ahk
  3. Set your interval and click mode
  4. Press Start or F6 to begin clicking
  5. Press Start Walk or F7 to begin auto walking

Files

File Description
autoclicker.ahk Main script
README.md Quick start guide
GUIDE.md Full usage + AHK editing guide
LICENSE MIT License

Made with AutoHotkey v2 — by elusive-otter