Skip to content

Instantly share code, notes, and snippets.

View SecretiveShell's full-sized avatar

TerminalMan SecretiveShell

View GitHub Profile
@SecretiveShell
SecretiveShell / main.py
Created June 3, 2024 09:10
Python Script that spams E, for use with shit roblox simulators
from pynput.keyboard import Controller
import time
keyboard = Controller()
while True :
keyboard.press('e')
time.sleep(.07)
keyboard.release('e')
time.sleep(.07)