-- Executor GUI (by harkinan) local gui = Instance.new("ScreenGui") gui.Parent = game.CoreGui local frame = Instance.new("Frame") frame.Parent = gui frame.Size = UDim2.new(0,500,0,300) frame.Position = UDim2.new(0.5,-250,0.5,-150) frame.BackgroundColor3 = Color3.fromRGB(40,40,40) frame.Active = true frame.Draggable = true local title = Instance.new("TextLabel") title.Parent = frame title.Size = UDim2.new(1,0,0,30) title.BackgroundColor3 = Color3.fromRGB(30,30,30) title.TextColor3 = Color3.new(1,1,1) title.Text = "Executor (by harkinan)" title.Font = Enum.Font.SourceSansBold title.TextSize = 18 local textbox = Instance.new("TextBox") textbox.Parent = frame textbox.Size = UDim2.new(1,-20,1,-80) textbox.Position = UDim2.new(0,10,0,40) textbox.MultiLine = true textbox.TextXAlignment = Enum.TextXAlignment.Left textbox.TextYAlignment = Enum.TextYAlignment.Top textbox.Text = "" textbox.ClearTextOnFocus = false textbox.TextColor3 = Color3.new(1,1,1) textbox.BackgroundColor3 = Color3.fromRGB(25,25,25) textbox.Font = Enum.Font.Code textbox.TextSize = 16 local function makeButton(name,x) local btn = Instance.new("TextButton") btn.Parent = frame btn.Size = UDim2.new(0,100,0,30) btn.Position = UDim2.new(0,x,1,-35) btn.Text = name btn.BackgroundColor3 = Color3.fromRGB(60,60,60) btn.TextColor3 = Color3.new(1,1,1) btn.Font = Enum.Font.SourceSans btn.TextSize = 16 return btn end local open = makeButton("Open",10) local save = makeButton("Save",120) local clear = makeButton("Clear",230) local execute = makeButton("Execute",340) clear.MouseButton1Click:Connect(function() textbox.Text = "" end) execute.MouseButton1Click:Connect(function() local code = textbox.Text loadstring(code)() end)