local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local NoclipButton = Instance.new("TextButton") local WalkSpeedBox = Instance.new("TextBox") local JumpPowerBox = Instance.new("TextBox") local DestroyButton = Instance.new("TextButton") ScreenGui.Name = "CustomGui" ScreenGui.Parent = game.CoreGui Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(139, 69, 19) -- Marrom Frame.Position = UDim2.new(0.5, -100, 0.5, -100) Frame.Size = UDim2.new(0, 200, 0, 250) Frame.Active = true Frame.Draggable = true Title.Parent = Frame Title.BackgroundColor3 = Color3.fromRGB(139, 69, 19) -- Marrom Title.Size = UDim2.new(1, 0, 0, 50) Title.Font = Enum.Font.SourceSans Title.Text = "CRIADOR DA GUI: 🎩 THE MR RED BLACK OWNER 🎩" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true NoclipButton.Parent = Frame NoclipButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) -- Verde NoclipButton.Position = UDim2.new(0.25, 0, 0.3, 0) NoclipButton.Size = UDim2.new(0.5, 0, 0.15, 0) NoclipButton.Font = Enum.Font.SourceSans NoclipButton.Text = "NOCLIP" NoclipButton.TextColor3 = Color3.fromRGB(0, 0, 0) NoclipButton.TextScaled = true WalkSpeedBox.Parent = Frame WalkSpeedBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) WalkSpeedBox.Position = UDim2.new(0.25, 0, 0.5, 0) WalkSpeedBox.Size = UDim2.new(0.5, 0, 0.15, 0) WalkSpeedBox.Font = Enum.Font.SourceSans WalkSpeedBox.PlaceholderText = "Velocidade" WalkSpeedBox.Text = "" WalkSpeedBox.TextColor3 = Color3.fromRGB(0, 0, 0) WalkSpeedBox.TextScaled = true JumpPowerBox.Parent = Frame JumpPowerBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) JumpPowerBox.Position = UDim2.new(0.25, 0, 0.7, 0) JumpPowerBox.Size = UDim2.new(0.5, 0, 0.15, 0) JumpPowerBox.Font = Enum.Font.SourceSans JumpPowerBox.PlaceholderText = "Pulo" JumpPowerBox.Text = "" JumpPowerBox.TextColor3 = Color3.fromRGB(0, 0, 0) JumpPowerBox.TextScaled = true DestroyButton.Parent = Frame DestroyButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) -- Vermelho DestroyButton.Position = UDim2.new(0.25, 0, 0.9, 0) DestroyButton.Size = UDim2.new(0.5, 0, 0.1, 0) DestroyButton.Font = Enum.Font.SourceSans DestroyButton.Text = "DESTRUIR GUI" DestroyButton.TextColor3 = Color3.fromRGB(255, 255, 255) DestroyButton.TextScaled = true local function noclip() local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() for _, part in pairs(character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end NoclipButton.MouseButton1Click:Connect(noclip) WalkSpeedBox.FocusLost:Connect(function(enterPressed) if enterPressed then local speed = tonumber(WalkSpeedBox.Text) if speed then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed end end end) JumpPowerBox.FocusLost:Connect(function(enterPressed) if enterPressed then local jumpPower = tonumber(JumpPowerBox.Text) if jumpPower then game.Players.LocalPlayer.Character.Humanoid.JumpPower = jumpPower end end end) DestroyButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end)