Created
April 14, 2026 20:08
-
-
Save Xnuvers007/bb4754f38bb25fde2fd7830be5c12653 to your computer and use it in GitHub Desktop.
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
| import pyautogui | |
| import time | |
| input("Klik Enter, lalu segera buka Discord dan klik kolom chat!") | |
| time.sleep(3) # Waktu buat pindah ke Discord | |
| while True: | |
| # Pakai interval 0.2 atau 0.3 biar lambat | |
| # Ini yang memicu animasi "Someone is typing..." di Discord | |
| pyautogui.typewrite("@haru", interval=0.25) | |
| # Kasih jeda dikit seolah-olah lagi mikir sebelum tekan Enter | |
| time.sleep(0.8) | |
| # Pilih user dari autocomplete | |
| pyautogui.press("enter") | |
| # Kirim | |
| pyautogui.press("enter") | |
| print("Sent! Lagi nunggu cooldown...") | |
| time.sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment