local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Header = Instance.new("Frame") local Title = Instance.new("TextLabel") local WhiteDot = Instance.new("Frame") local UICorner_WhiteDot = Instance.new("UICorner") local Sidebar = Instance.new("Frame") local LuaLogo = Instance.new("ImageLabel") local UsernameLabel = Instance.new("TextLabel") local PingLabel = Instance.new("TextLabel") local TextBox = Instance.new("TextBox") local ExecuteBtn = Instance.new("TextButton") local ClearBtn = Instance.new("TextButton") local ToggleBtn = Instance.new("TextButton") ScreenGui.Name = "AdvancedExecutor" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false ToggleBtn.Name = "ToggleBtn" ToggleBtn.Parent = ScreenGui ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 255) ToggleBtn.Position = UDim2.new(0, 10, 0, 10) ToggleBtn.Size = UDim2.new(0, 60, 0, 30) ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.Text = "Toggle" ToggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleBtn.TextSize = 14 MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(100, 100, 100) MainFrame.Position = UDim2.new(0.5, -300, 0.5, -175) MainFrame.Size = UDim2.new(0, 600, 0, 350) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true Header.Name = "Header" Header.Parent = MainFrame Header.BackgroundColor3 = Color3.fromRGB(0, 0, 255) Header.Size = UDim2.new(1, 0, 0, 60) Header.BorderSizePixel = 0 Title.Parent = Header Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, 15, 0, 0) Title.Size = UDim2.new(0, 100, 1, 0) Title.Font = Enum.Font.SourceSans Title.Text = "Lua" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 60 Title.TextXAlignment = Enum.TextXAlignment.Left WhiteDot.Parent = Header WhiteDot.BackgroundColor3 = Color3.fromRGB(255, 255, 255) WhiteDot.Position = UDim2.new(0, 100, 0, 10) WhiteDot.Size = UDim2.new(0, 40, 0, 40) UICorner_WhiteDot.CornerRadius = UDim.new(1, 0) UICorner_WhiteDot.Parent = WhiteDot Sidebar.Name = "Sidebar" Sidebar.Parent = MainFrame Sidebar.BackgroundColor3 = Color3.fromRGB(60, 60, 60) Sidebar.Position = UDim2.new(0, 5, 0, 65) Sidebar.Size = UDim2.new(0, 170, 0, 180) Sidebar.BorderSizePixel = 2 LuaLogo.Parent = Sidebar LuaLogo.BackgroundTransparency = 1 LuaLogo.Position = UDim2.new(0.1, 0, 0.1, 0) LuaLogo.Size = UDim2.new(0.8, 0, 0.8, 0) LuaLogo.Image = "rbxassetid://0" -- Change Your Logo UsernameLabel.Parent = MainFrame UsernameLabel.BackgroundColor3 = Color3.fromRGB(0, 255, 0) UsernameLabel.Position = UDim2.new(0, 5, 0, 250) UsernameLabel.Size = UDim2.new(0, 170, 0, 40) UsernameLabel.Font = Enum.Font.SourceSans UsernameLabel.Text = "Username : " .. game.Players.LocalPlayer.Name UsernameLabel.TextColor3 = Color3.fromRGB(0, 0, 0) UsernameLabel.TextSize = 18 UsernameLabel.TextXAlignment = Enum.TextXAlignment.Left PingLabel.Parent = MainFrame PingLabel.BackgroundColor3 = Color3.fromRGB(255, 0, 0) PingLabel.Position = UDim2.new(0, 5, 0, 300) PingLabel.Size = UDim2.new(0, 170, 0, 40) PingLabel.Font = Enum.Font.SourceSans PingLabel.Text = "Made By Python" PingLabel.TextColor3 = Color3.fromRGB(0, 0, 0) PingLabel.TextSize = 25 PingLabel.TextXAlignment = Enum.TextXAlignment.Left TextBox.Parent = MainFrame TextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0) TextBox.Position = UDim2.new(0, 185, 0, 75) TextBox.Size = UDim2.new(0, 405, 0, 180) TextBox.Font = Enum.Font.Code TextBox.Text = 'print("hello world")' TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.TextSize = 16 TextBox.ClearTextOnFocus = false TextBox.MultiLine = true TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.TextYAlignment = Enum.TextYAlignment.Top ExecuteBtn.Parent = MainFrame ExecuteBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) ExecuteBtn.Position = UDim2.new(0, 185, 0, 270) ExecuteBtn.Size = UDim2.new(0, 110, 0, 40) ExecuteBtn.Font = Enum.Font.SourceSansBold ExecuteBtn.Text = "EXECUTE" ExecuteBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ExecuteBtn.TextSize = 20 ClearBtn.Parent = MainFrame ClearBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) ClearBtn.Position = UDim2.new(0, 320, 0, 270) ClearBtn.Size = UDim2.new(0, 100, 0, 40) ClearBtn.Font = Enum.Font.SourceSansBold ClearBtn.Text = "CLEAR" ClearBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ClearBtn.TextSize = 20 spawn(function() while wait(1) do local ping = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString() local actualPing = string.split(ping, " " )[1] PingLabel.Text = "Ping : " .. math.floor(actualPing) .. "ms" end end) ExecuteBtn.MouseButton1Click:Connect(function() local code = TextBox.Text local func, err = loadstring(code) if func then func() else warn("Script Error: " .. err) end end) ClearBtn.MouseButton1Click:Connect(function() TextBox.Text = "" end) ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end)