Page 1 of 1

Background Autoclicker

Posted: 20 Mar 2024, 12:28
by ARDATR103
I need help with something. I started using autohotkey today. When I run this code, it brings up Roblox and it works. What I want is for it to run in the background so I can do other things on my computer while it is running.

Code: Select all

#SingleInstance, Force
CoordMode, Mouse, Screen

F6::
xCoordinate := 519
yCoordinate := 592
clickCount := 1
WinActivate, Roblox
MouseMove, %xCoordinate%, %yCoordinate%, 50

Loop, %clickCount% {
    Click
    Sleep, 10000
}
return
[Mod edit: Added [code][/code] tags. Please use them yourself when posting code!]