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 (0.65500 mb) """ print(Fore.RED + Fore.YELLOW + title) print("_________________________________") ipinput = input(Fore.GREEN + "Put in ip: ") print(Fore.RED + Fore.YELLOW + "_________________________________") ip = ipinput for _ in range(15): subprocess.Popen(["cmd.exe", "/K", f"ping {ip} -t"]) time.sleep(4)