Just some suggestions for extra antiban:
A MouseSpeed of 80 is ridiculous. Noone moves nearly that fast legitimately. You even set it to 15 slightly earlier (the normal speed), so why reset it to 80?
You use a couple of different mouse methods, which is kind of odd that you are using different versions. But here you use outdated versions
Simba Code:
MoveMouse(mp.x, mp.y);//MMouse is the updated version
if WaitUptext('th', 500) then
begin
ClickMouse(mp.x, mp.y, mouse_Left);//ClickMouse2 is the updated version.
You lack randomness almost entirely in your script, meaning you are clicking the exact same pixel locations with the exact same timing every time (this is exactly what bot-watch watches for). Instead of MMouse(x,y,0,0); Just change the 0s to 3s and that's a range of 37 pixels of randomness. That's a HUGE difference in detectability, while still being accurate for clicking. I would also suggest adding some more Waits as people tend to not have perfect timing (and when they do, it isn't exactly 100ms, it's typically more like 200-350), so instead of:
you can do
Simba Code:
wait(randomrange(200,350));
I hope this helps in improving the lack of noticeability of your bot!