Skip to content

Instantly share code, notes, and snippets.

@SecretiveShell
Created June 3, 2024 09:10
Show Gist options
  • Select an option

  • Save SecretiveShell/23bcc06a84218277f9a96afa28a3f96c to your computer and use it in GitHub Desktop.

Select an option

Save SecretiveShell/23bcc06a84218277f9a96afa28a3f96c to your computer and use it in GitHub Desktop.
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment