-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUwU.py
34 lines (28 loc) · 1.03 KB
/
UwU.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import time
import os
from discord_webhook import DiscordWebhook
from colorama import Fore, Back, Style, init
## Bad Code LOL
def webhooksendevent():
webhook = DiscordWebhook(url=f"{discord_urlLibrary}", content=f"@here {discordcon} - UwU.Fucked", username="UwU.Fucked")
time.sleep(0.3)
response = webhook.execute()
os.system("title - UwU.Fucked - Webhook Fucker - & cls")
print(f""""{Fore.LIGHTMAGENTA_EX}
_____ _____ _____ _ _
| | |_ _ _| | | | __|_ _ ___| |_ ___ _| |
| | | | | | | |_| __| | | _| '_| -_| . |
|_____|_____|_____|_|__| |___|___|_,_|___|___|
""""")
print ("Welcome UwU.Fucked Tool")
discord_urlLibrary = input("Webhook: ")
discordcon = input("Content: ")
try:
count = int(input("Number sends: "))
if count < 0:
raise ValueError("Error")
except ValueError as ve:
print(f"Not Found! {ve}")
else:
for _ in range(count):
webhooksendevent()