I need higher cps
Posted: 23 Apr 2024, 14:49
Can someone help me im new to all this. Chatgpt made me a good script i wanna keep the script the same, the only thing i wanna change is the click speed. The sleep time is set to 0 which is the lowest but im only getting 22 cps i want at least 50 cps. Can someone help here is the script:
[Mod edit: Added [code][/code] tags. Please use them yourself when posting code!]
Code: Select all
#MaxThreadsPerHotkey 2
toggle := 0
X::
toggle := !toggle
return
$LButton::
While toggle && GetKeyState("LButton", "P") {
Click
Sleep 0 ; Adjust click speed here (lower value = faster clicks)
}
return