From e384d7631566646f0ffc08fab12d39cba63a28ff Mon Sep 17 00:00:00 2001 From: Swaranabha Chatterjee <114249423+reek004@users.noreply.github.com> Date: Thu, 26 Oct 2023 08:49:16 +0530 Subject: [PATCH] Bot to move the cursor automaticly This is a bot that moves the cursor automaticly --- afkbot.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 afkbot.py diff --git a/afkbot.py b/afkbot.py new file mode 100644 index 00000000..615d4bd1 --- /dev/null +++ b/afkbot.py @@ -0,0 +1,10 @@ +import pyautogui as pag +import time +import random + +while True: + x = random.randint(100,2000) + y = random.randint(500,1000) + + pag.moveTo(x,y,0.5) + time.sleep(5) \ No newline at end of file