Script Gui (pastebin): Doors

import tkinter as tk from tkinter import messagebox

def start_script(): # Your script's start logic here messagebox.showinfo("Script Started", "The script has started.") Doors Script Gui (Pastebin)

stop_button = tk.Button(root, text="Stop Script", command=stop_script) stop_button.pack() import tkinter as tk from tkinter import messagebox