local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ExecuteButton = Instance.new("TextButton") local ClearButton = Instance.new("TextButton") local Notify = Instance.new("TextLabel") -- Set the parent of ScreenGui to the PlayerGui of the local player ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Configure the Frame Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Frame.Size = UDim2.new(0, 400, 0, 300) Frame.Position = UDim2.new(0.5, -200, 0.5, -150) Frame.Active = true Frame.Draggable = true -- Configure the Title Title.Parent = Frame Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title.Size = UDim2.new(1, 0, 0, 50) Title.Text = "SSZ EXE" Title.TextColor3 = Color3.fromRGB(0, 0, 0) Title.TextScaled = true -- Configure the Execute Button ExecuteButton.Parent = Frame ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) ExecuteButton.Size = UDim2.new(0, 100, 0, 50) ExecuteButton.Position = UDim2.new(0.5, -50, 0.5, -25) ExecuteButton.Text = "Execute" -- Configure the Clear Button ClearButton.Parent = Frame ClearButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) ClearButton.Size = UDim2.new(0, 100, 0, 50) ClearButton.Position = UDim2.new(0.5, -50, 0.5, 30) ClearButton.Text = "Clear" -- Configure the Notification Label Notify.Parent = Frame Notify.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Notify.Size = UDim2.new(1, 0, 0, 50) Notify.Position = UDim2.new(0, 0, 0, 250) Notify.TextColor3 = Color3.fromRGB(0, 0, 0) Notify.TextScaled = true Notify.Text = "" -- Function to execute a script local function executeScript() Notify.Text = "Script executed!" end -- Function to clear the notification local function clearScript() Notify.Text = "Script cleared!" end -- Connect button clicks to their respective functions ExecuteButton.MouseButton1Click:Connect(executeScript) ClearButton.MouseButton1Click:Connect(clearScript) game.Players.LocalPlayer:Kick("Script patched. DM owner of this script.")