-- Cleitinho Hub - Versão Original local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") -- Faz o menu aparecer na tela do cara ScreenGui.Parent = game.CoreGui MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) -- Cor escura igual tu gosta MainFrame.Position = UDim2.new(0.5, -125, 0.5, -150) MainFrame.Size = UDim2.new(0, 250, 0, 300) MainFrame.Active = true MainFrame.Draggable = true -- Para mover o Hub pela tela -- Título do teu Hub Title.Parent = MainFrame Title.Text = "CLEITINHO HUB" Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 20 -- AQUI TU COLOCA OS TEUS BOTÕES DE ANTES (Exemplo de Speed) local SpeedBtn = Instance.new("TextButton") SpeedBtn.Parent = MainFrame SpeedBtn.Text = "VELOCIDADE (100)" SpeedBtn.Size = UDim2.new(0.9, 0, 0, 45) SpeedBtn.Position = UDim2.new(0.05, 0, 0.2, 0) SpeedBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 127) SpeedBtn.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 end) print("Cleitinho Hub carregado!")