Hello, first post in a really long time, like if it helped! k thanks enjoy

Learning how to code with AHK, got bored and made an autoclicker for this game I found

It's a VERY simple AHK code that just needs to be converted into an .exe

For noobs who don't know what AHK is or can't be bothered to learn AHK. read below and follow steps. (AHK pros skip this)

make a new text file on your desktop, paste code (found in this thread at bottom) to the text file, save text file on desktop, name it whatever you want, download AutoHotKey from google search, install it, launch AHK, Locate "Required Parameters" section, click browse source file, make sure you have "all files" selected (bottom right drop down list) so text files appear as a selection, find your text file on desktop, click "Open", click browse destination file, select desktop as the destination, name it whatever you want, save it, click "Convert", locate it on desktop, and double click it to launch it

Disclaimer: DO NOT CLICK OUT OF GAME WHILE YOU HAVE THIS ACTIVATED, you will constantly click everywhere on your PC (lol)
Disclaimer 2: I know this is very basic and can be used for other gamemodes on roblox or other such games (Blah blah blah)

To close the launched AHK script, find it in your task bar (go to bottom right and click on the arrow that points up saying "Show Hidden Icons" and right click the big Green "H" and exit it.


While IN GAME:
Click F1 to start autoclicker, Click F2 to stop autoclicker


Commands:
F1 to start
F2 to stop


ACTUAL CODE, COPY PASTE TO NEW TEXT FILE:

F1::
looping := true
while (looping = true)
{
send, {LButton}
}
F2::
looping := false
return