Skip to content

Instantly share code, notes, and snippets.

@Xnuvers007
Created April 14, 2026 20:08
Show Gist options
  • Select an option

  • Save Xnuvers007/bb4754f38bb25fde2fd7830be5c12653 to your computer and use it in GitHub Desktop.

Select an option

Save Xnuvers007/bb4754f38bb25fde2fd7830be5c12653 to your computer and use it in GitHub Desktop.
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