- Status
- Offline
- Joined
- Mar 25, 2020
- Messages
- 343
- Reaction score
- 117
AutoHotKey is a free script language that allows you to create simple and complex scripts.
Today I wanna share you one very simple autoclicker that was made using ahk.
It can be used with any game that's not detecting AHK process.

Today I wanna share you one very simple autoclicker that was made using ahk.
It can be used with any game that's not detecting AHK process.

Code:
#MaxThreadsPerHotkey, 4
SetBatchLines, -1
Toggle := 0
J::
Toggle := !Toggle
While, (Toggle= 1)
{
click
}
Return
H::
Toggle := !Toggle
While, (Toggle= 1)
{
Send, {RButton}
}
Return
F3::
Toggle := 0
Instruction on how to use a script
1. First of all you need to download and install AutoHotKey;
2. Then hit the RMB on your Desktop;
3. Click the "AutoHotkey Script" button from dropdown menu;
4. Right click on it and hit the "Edit Script" button;
5. Copy and paste everything from spoiler above into that file;
6. Ctrl + S to save the file;
7. Run the script as AutoHotkey file;
Here you go! You can activate the autoclicking on LMB by pressing J and RMB by clicking H.
F3 is just a panic key that will turn the script off.
1. First of all you need to download and install AutoHotKey;
2. Then hit the RMB on your Desktop;
3. Click the "AutoHotkey Script" button from dropdown menu;
4. Right click on it and hit the "Edit Script" button;
5. Copy and paste everything from spoiler above into that file;
6. Ctrl + S to save the file;
7. Run the script as AutoHotkey file;
Here you go! You can activate the autoclicking on LMB by pressing J and RMB by clicking H.
F3 is just a panic key that will turn the script off.
You cant view this link please login.