Doors Script Gui (pastebin) -

stop_button = tk.Button(root, text="Stop Script", command=stop_script) stop_button.pack()

def stop_script(): # Your script's stop logic here messagebox.showinfo("Script Stopped", "The script has stopped.") Doors Script Gui (Pastebin)

import tkinter as tk from tkinter import messagebox stop_button = tk