README and Script

pull/330/head
aleff-github 2023-05-24 10:43:56 +02:00
parent 4f4df11487
commit 80802d110b
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# The Mouse Moves By Itself
A script used to prank your friends with the mouse pointer.
**Category**: Prank
## Description
A script used to prank your friends with the mouse pointer.
Opens a shell, dowloand the Python script that will prank your friends mouving the mouse pointer.
## Getting Started
### Dependencies
* Internet Connection
### Settings
- Setup your Python script link in the payload.txt file

View File

@ -0,0 +1,15 @@
import os
try:
import pyautogui
except:
os.system("pip install pyautogui")
import pyautogui
import random
import time
while True:
# Move the mouse cursor randomly
x_offset = random.randint(-250, 250)
y_offset = random.randint(-250, 250)
pyautogui.moveRel(x_offset, y_offset, duration=0.25)
time.sleep(0.1) # 1 second delay