--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local Players = game:GetService("Players") local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Logo = Instance.new("ImageLabel") local ExecuteButton = Instance.new("TextButton") local ClearButton = Instance.new("TextButton") -- New Clear Button local TextBox = Instance.new("TextBox") -- Setting up the ScreenGui ScreenGui.Parent = Players.LocalPlayer:WaitForChild("PlayerGui") -- Configuring the Frame Frame.Size = UDim2.new(0.5, 0, 0.5, 0) Frame.Position = UDim2.new(0.25, 0, 0.25, 0) Frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45) Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui -- Configuring the Logo Logo.Size = UDim2.new(0, 100, 0, 100) Logo.Position = UDim2.new(0.5, -50, 0, 0) Logo.Image = "rbxassetid://YOUR_TUBERS93_LOGO_ID" -- Replace with actual logo ID Logo.Parent = Frame -- Configuring the Execute Button ExecuteButton.Size = UDim2.new(0, 100, 0, 50) ExecuteButton.Position = UDim2.new(0.5, -150, 0.8, 0) -- Positioning to the left ExecuteButton.Text = "Execute" ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0) ExecuteButton.Parent = Frame -- Configuring the Clear Button ClearButton.Size = UDim2.new(0, 100, 0, 50) -- Size of the Clear Button ClearButton.Position = UDim2.new(0.5, 50, 0.8, 0) -- Positioning to the right of Execute Button ClearButton.Text = "Clear" -- Text for the Clear Button ClearButton.BackgroundColor3 = Color3.fromRGB(170, 0, 0) -- Color for the Clear Button ClearButton.Parent = Frame -- Configuring the TextBox TextBox.Size = UDim2.new(1, -20, 0.5, -20) TextBox.Position = UDim2.new(0, 10, 0.1, 0) TextBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30) TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.PlaceholderText = "Put your script here..." -- Updated placeholder text TextBox.Parent = Frame -- Functionality for the Execute Button ExecuteButton.MouseButton1Click:Connect(function() local scriptToExecute = TextBox.Text loadstring(scriptToExecute)() -- Execute the Lua script end) -- Functionality for the Clear Button ClearButton.MouseButton1Click:Connect(function() TextBox.Text = "" -- Clear the text box end) -- Functionality for the Logo to toggle UI visibility Logo.MouseButton1Click:Connect(function() Frame.Visible = not Frame.Visible end) -- Setting the title of the Frame Frame.Title = "KEINV3" Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Background color set to black