After downloading several auto-clickers that didn't meet my needs, I learned Python to create my first project: (what I believe to be :D ) the best auto-clicker.
This auto-clicker is small and quite simple. It allows you to set the number of clicks per second. You can choose the mouse button (left, middle, right) and the type of click (single, double). Finally, you can easily select the coordinates where the mouse will click by pressing the F5 key, and you can turn the auto-clicker on and off with F2.
If you only want to download the auto-clicker, click here. However, if you want to view the source code or run it, you will need to execute the following commands.
Windows (PowerShell)
# Install the Virtual Enviroment
python -m venv .venv
# Activate the enviroment
.\.venv\Scripts\Activate.ps1
# Install all the necessary libraries
pip install -r requirements.txtMacOs/Linux
# Install python-tk (required for GUI)
brew install python-tk@3.11
# Install the Virtual Enviroment
python3 -m venv .venv
# Activate the enviroment
source .venv/bin/activate
# Install all the necessary libraries
pip install -r requirements.txtAnd now you are done! You can run and see my (slightly messy) code.
I hope you like my autoclicker, as it's my first project. I would love to hear your suggestions. Thank you for using my auto-clicker!