Script-Based Autoclicker for Custom Automation

Save time and boost productivity by automating your mouse clicks in any application.

Application window screenshot

Features

Text icon

Custom Click Scripts

Design powerful click patterns and automate even the most complex tasks with ease.

Desktop icon

Platform Compatibility

Enjoy seamless performance on Windows, macOS, and Linux. One tool for any of your devices.

Pause icon

Easily Haltable

Stay in control, simply move your mouse to halt the clicker instantly, anytime.

About the Script

Clicker App uses simple, readable scripts. Here's a quick example:


        # Move to coordinates (200, 300)
        MOVE 200,300

        # Perform a left click
        CLICK LEFT

        # Wait 2 seconds (2000 milliseconds)
        WAIT 2000

        # Repeat the following 5 times
        REPEAT 5
          MOVE 400,500
          CLICK RIGHT
          WAIT 1000
        END

        # Presses, waits 150ms and releases the 'SHIFT' key
        PRESS SHIFT
        WAIT 150
        RELEASE SHIFT
                
  • MOVE 200,300 - moves the cursor to position (200, 300).
  • CLICK LEFT - left mouse button click.
  • WAIT 2000 - waits 2 seconds (2000 milliseconds).
  • REPEAT 5 - repeats code section 5 times.
  • END - ends repeat section.
  • PRESS SHIFT - presses the 'SHIFT' key.
  • RELEASE SHIFT - releases the 'SHIFT' key.

Cursor position is always tracked in Mouse X: ... Mouse Y: ... section and can be inserted into the script.

The commands CLICK, PRESS, and RELEASE support LEFT, RIGHT, MIDDLE,and any keyboard key (e.g., A-Z, 0-9, ENTER, SHIFT, CONTROL, ALT).

Ready to Automate?

Download the Clicker App now and start simplifying your tasks!

Open-source, free, and safe — check out the code or release builds on GitHub.

Quick Start Guide

Follow these steps to automate your tasks using Clicker App: