System Lockdown Prank – Python GUI FBI Warning App | FuzzuTech Viral App Series
Demo :
Click Video πππ
π Featured:
-
Language: Python 3
-
Library: Tkinter
-
Category: Fun/Prank GUI
-
Purpose: Entertainment only
-
Demo Video is Available.
Author: FuzzuTech
Code :
import tkinter as tk
from tkinter import messagebox
import time
import threading
def countdown():
for i in range(10, 0, -1):
timer_label.config(text=f"System Lock in: {i} sec")
root.update()
time.sleep(1)
timer_label.config(text="System Locked!")
messagebox.showerror("ALERT", "Your system is under investigation by FBI ⚠️")
root = tk.Tk()
root.title("Fuzzu FBI Warning")
root.geometry("400x300")
root.configure(bg="black")
label = tk.Label(root, text="⚠️ FBI Cyber Crime Warning ⚠️", font=("Arial", 16, "bold"), fg="red", bg="black")
label.pack(pady=30)
timer_label = tk.Label(root, text="", font=("Arial", 14), fg="white", bg="black")
timer_label.pack(pady=20)
start_btn = tk.Button(root, text="Acknowledge", font=("Arial", 12), command=lambda: threading.Thread(target=countdown).start())
start_btn.pack(pady=30)
root.mainloop()
Comments
Post a Comment