-- Tela principal local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game:GetService("CoreGui") local hubFrame = Instance.new("Frame") hubFrame.Size = UDim2.new(0, 300, 0, 200) hubFrame.Position = UDim2.new(0.5, -150, 0.5, -100) hubFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) hubFrame.BorderSizePixel = 2 hubFrame.BorderColor3 = Color3.fromRGB(0, 200, 100) hubFrame.Parent = ScreenGui local UICorner = Instance.new("UICorner", hubFrame) UICorner.CornerRadius = UDim.new(0, 12) -- Título local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, 0, 0, 40) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "🔑 Anti-Tédio Hub" titleLabel.TextColor3 = Color3.fromRGB(0, 255, 150) titleLabel.Font = Enum.Font.GothamBold titleLabel.TextSize = 20 titleLabel.Parent = hubFrame -- Campo de texto para digitar a key local keyInput = Instance.new("TextBox") keyInput.Size = UDim2.new(0, 200, 0, 35) keyInput.Position = UDim2.new(0.5, -100, 0, 60) keyInput.BackgroundColor3 = Color3.fromRGB(30, 30, 30) keyInput.BorderSizePixel = 2 keyInput.BorderColor3 = Color3.fromRGB(0, 255, 150) keyInput.PlaceholderText = "Digite sua Key aqui" keyInput.PlaceholderColor3 = Color3.fromRGB(150, 150, 150) keyInput.Text = "" keyInput.TextColor3 = Color3.fromRGB(255, 255, 255) keyInput.Font = Enum.Font.Gotham keyInput.TextSize = 16 keyInput.Parent = hubFrame local UICorner2 = Instance.new("UICorner", keyInput) UICorner2.CornerRadius = UDim.new(0, 8) -- Botão para gerar/copy key local generateBtn = Instance.new("TextButton") generateBtn.Size = UDim2.new(0, 120, 0, 35) generateBtn.Position = UDim2.new(0.5, -60, 0, 110) generateBtn.BackgroundColor3 = Color3.fromRGB(0, 120, 60) generateBtn.BorderSizePixel = 2 generateBtn.BorderColor3 = Color3.fromRGB(0, 255, 150) generateBtn.Text = "Gerar Key" generateBtn.TextColor3 = Color3.fromRGB(255, 255, 255) generateBtn.TextSize = 16 generateBtn.Font = Enum.Font.GothamBold generateBtn.Parent = hubFrame local UICorner3 = Instance.new("UICorner", generateBtn) UICorner3.CornerRadius = UDim.new(0, 8) -- Status de key local statusLabel = Instance.new("TextLabel") statusLabel.Size = UDim2.new(0, 200, 0, 30) statusLabel.Position = UDim2.new(0.5, -100, 0, 160) statusLabel.BackgroundTransparency = 1 statusLabel.Text = "Key: Nenhuma" statusLabel.TextColor3 = Color3.fromRGB(200, 200, 200) statusLabel.TextSize = 14 statusLabel.Font = Enum.Font.Gotham statusLabel.Parent = hubFrame -- Keys pré-definidas local keys = { "FreeKey_81010191992", "Key_2025Pro", "TrollHub_777", "Memes4Life_XD", "AntiTedio_BR", "HubAccess_999", "Scripting_ProKey" } -- Função: gerar key aleatória generateBtn.MouseButton1Click:Connect(function() local randomKey = keys[math.random(1, #keys)] setclipboard(randomKey) statusLabel.Text = "Key copiada: " .. randomKey end)