local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextBox = Instance.new("TextBox") local ExecuteButton = Instance.new("TextButton") local ClearButton = Instance.new("TextButton") local Title = Instance.new("TextLabel") local SidePanel = Instance.new("Frame") local DiscordLabel = Instance.new("TextLabel") local TodoLabel = Instance.new("TextLabel") local TodoList = Instance.new("TextLabel") local HelpLabel = Instance.new("TextLabel") local CloseButton = Instance.new("TextButton") local MinimizeButton = Instance.new("TextButton") -- Propriedades da GUI ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(55, 55, 55) Frame.Position = UDim2.new(0.5, -200, 0.5, -100) Frame.Size = UDim2.new(0, 400, 0, 200) Frame.AnchorPoint = Vector2.new(0.5, 0.5) Frame.Active = true Frame.Draggable = true Title.Parent = Frame Title.BackgroundColor3 = Color3.fromRGB(45, 45, 45) Title.Size = UDim2.new(1, 0, 0, 25) Title.Font = Enum.Font.SourceSans Title.Text = "Epic ServerSide" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 18 CloseButton.Parent = Frame CloseButton.BackgroundColor3 = Color3.fromRGB(45, 45, 45) CloseButton.Position = UDim2.new(1, -25, 0, 0) CloseButton.Size = UDim2.new(0, 25, 0, 25) CloseButton.Font = Enum.Font.SourceSans CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 18 MinimizeButton.Parent = Frame MinimizeButton.BackgroundColor3 = Color3.fromRGB(45, 45, 45) MinimizeButton.Position = UDim2.new(1, -50, 0, 0) MinimizeButton.Size = UDim2.new(0, 25, 0, 25) MinimizeButton.Font = Enum.Font.SourceSans MinimizeButton.Text = "-" MinimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255) MinimizeButton.TextSize = 18 TextBox.Parent = Frame TextBox.BackgroundColor3 = Color3.fromRGB(25, 25, 25) TextBox.Position = UDim2.new(0, 10, 0, 35) TextBox.Size = UDim2.new(0.7, -20, 0.7, -45) TextBox.Font = Enum.Font.SourceSans TextBox.Text = "-- //Made by Epic_haxx//Paste your script here//" TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.TextSize = 14 TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.TextYAlignment = Enum.TextYAlignment.Top TextBox.ClearTextOnFocus = false TextBox.MultiLine = true SidePanel.Parent = Frame SidePanel.BackgroundColor3 = Color3.fromRGB(25, 25, 25) SidePanel.Position = UDim2.new(0.7, 10, 0, 35) SidePanel.Size = UDim2.new(0.3, -20, 0.7, -45) DiscordLabel.Parent = SidePanel DiscordLabel.BackgroundColor3 = Color3.fromRGB(25, 25, 25) DiscordLabel.Size = UDim2.new(1, 0, 0, 20) DiscordLabel.Font = Enum.Font.SourceSans DiscordLabel.Text = "Team Epic_Haxx." DiscordLabel.TextColor3 = Color3.fromRGB(255, 255, 255) DiscordLabel.TextSize = 14 TodoLabel.Parent = SidePanel TodoLabel.BackgroundColor3 = Color3.fromRGB(25, 25, 25) TodoLabel.Position = UDim2.new(0, 0, 0, 25) TodoLabel.Size = UDim2.new(1, 0, 0, 20) TodoLabel.Font = Enum.Font.SourceSans TodoLabel.Text = "" TodoLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TodoLabel.TextSize = 14 TodoList.Parent = SidePanel TodoList.BackgroundColor3 = Color3.fromRGB(25, 25, 25) TodoList.Position = UDim2.new(0, 0, 0, 45) TodoList.Size = UDim2.new(1, 0, 0.5, 0) TodoList.Font = Enum.Font.SourceSans TodoList.Text = "discord.gg/UvxycPWN" TodoList.TextColor3 = Color3.fromRGB(255, 255, 255) TodoList.TextSize = 14 TodoList.TextXAlignment = Enum.TextXAlignment.Left TodoList.TextYAlignment = Enum.TextYAlignment.Top HelpLabel.Parent = SidePanel HelpLabel.BackgroundColor3 = Color3.fromRGB(25, 25, 25) HelpLabel.Position = UDim2.new(0, 0, 0.5, 10) HelpLabel.Size = UDim2.new(1, 0, 0.5, -10) HelpLabel.Font = Enum.Font.SourceSans HelpLabel.Text = "" HelpLabel.TextColor3 = Color3.fromRGB(255, 255, 255) HelpLabel.TextSize = 14 ExecuteButton.Parent = Frame ExecuteButton.BackgroundColor3 = Color3.fromRGB(45, 45, 45) ExecuteButton.Position = UDim2.new(0, 10, 1, -35) ExecuteButton.Size = UDim2.new(0.3, -20, 0, 25) ExecuteButton.Font = Enum.Font.SourceSans ExecuteButton.Text = "EXE" ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255) ExecuteButton.TextSize = 14 ClearButton.Parent = Frame ClearButton.BackgroundColor3 = Color3.fromRGB(45, 45, 45) ClearButton.Position = UDim2.new(0.7, 10, 1, -35) ClearButton.Size = UDim2.new(0.3, -20, 0, 25) ClearButton.Font = Enum.Font.SourceSans ClearButton.Text = "CLEAR" ClearButton.TextColor3 = Color3.fromRGB(255, 255, 255) ClearButton.TextSize = 14 -- Função para executar o script ExecuteButton.MouseButton1Click:Connect(function() local scriptText = TextBox.Text game.ReplicatedStorage.RemoteEvent:FireServer(scriptText) end) -- Função para limpar a área de texto ClearButton.MouseButton1Click:Connect(function() TextBox.Text = "" end) -- Função para fechar a GUI CloseButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- Função para minimizar a GUI MinimizeButton.MouseButton1Click:Connect(function() if Frame.Size == UDim2.new(0, 400, 0, 200) then Frame.Size = UDim2.new(0, 400, 0, 25) else Frame.Size = UDim2.new(0, 400, 0, 200) end end) -- Logo local gui = Instance.new("ScreenGui") gui.Name = "executor" gui.Parent = game.CoreGui local lel = Instance.new("ImageLabel") lel.Size = UDim2.new(0.0, 100, 0.0, 100) lel.Position = UDim2.new(-0.127000004, 0, 0.407999992, 0) lel.BackgroundColor3 = Color3.new(0, 0, 0) lel.ImageColor3 = Color3.new(1, 1, 1) lel.Image = "rbxassetid://80185626770995" lel.ImageTransparency = 0 lel.Parent = gui lel.BackgroundTransparency = 1 local Ring = Instance.new("ImageLabel") Ring.Size = UDim2.new(1.0, 19, 1.0, 19) Ring.Position = UDim2.new(0.0, -9, 0.0, -9) Ring.BackgroundColor3 = Color3.new(255, 255, 255) Ring.ImageColor3 = Color3.new(0, 0, 0) Ring.Image = "rbxassetid://126506133083228" Ring.ImageTransparency = 0 Ring.Parent = lel Ring.BackgroundTransparency = 1 local Orbit = Instance.new("ImageLabel") Orbit.Size = UDim2.new(0.0, 21, 0.0, 21) Orbit.Position = UDim2.new(0.0, 0, 0.0, 10) Orbit.BackgroundColor3 = Color3.new(0, 0, 0) Orbit.ImageColor3 = Color3.new(1, 1, 1) Orbit.Image = "rbxassetid://127983473949140" Orbit.ImageTransparency = 0 Orbit.Parent = Ring Orbit.BackgroundTransparency = 1 lel:TweenPosition(UDim2.new(0.458, 0, 0.408, 0), "Out", "Linear", 0.4, false) wait(3) lel:TweenPosition(UDim2.new(0.0, 9, 0.0, 190), "Out", "Sine", 0.7, false) while wait() do Ring.Rotation = Ring.Rotation + 1 Orbit.Rotation = Orbit.Rotation - 1 end