Created
June 3, 2024 09:10
-
-
Save SecretiveShell/23bcc06a84218277f9a96afa28a3f96c to your computer and use it in GitHub Desktop.
Python Script that spams E, for use with shit roblox simulators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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