16 lines
328 B
Python
16 lines
328 B
Python
import os
|
|
import time
|
|
|
|
os.system("clear")
|
|
os.system("figlet Attack Starting")
|
|
print("[ ] 0%")
|
|
time.sleep(5)
|
|
print("[===== ] 25%")
|
|
time.sleep(5)
|
|
print("[========== ] 50%")
|
|
time.sleep(5)
|
|
print("[=============== ] 75%")
|
|
time.sleep(5)
|
|
print("[====================] 100%")
|
|
time.sleep(3)
|