local TweenService = game:GetService("TweenService") local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local StarterGui = game:GetService("StarterGui") local player = Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "OutlawKeyGUI" gui.ResetOnSpawn = false -- Создание основной рамки local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 400, 0, 250) mainFrame.Position = UDim2.new(0.5, -200, 0.5, -125) mainFrame.BackgroundColor3 = Color3.fromRGB(20, 0, 40) mainFrame.BorderSizePixel = 0 mainFrame.BackgroundTransparency = 1 mainFrame.Parent = gui -- Glow эффект local glow = Instance.new("UIStroke", mainFrame) glow.Thickness = 2 glow.Color = Color3.fromRGB(170, 0, 255) glow.Transparency = 0.2 -- Скейл анимация появления TweenService:Create(mainFrame, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), { BackgroundTransparency = 0 }):Play() -- Текст local title = Instance.new("TextLabel", mainFrame) title.Size = UDim2.new(1, 0, 0.2, 0) title.BackgroundTransparency = 1 title.Text = "OUTLAW KEY SYSTEM" title.TextColor3 = Color3.fromRGB(255, 0, 255) title.Font = Enum.Font.Arcade title.TextScaled = true -- Поле ввода local input = Instance.new("TextBox", mainFrame) input.Size = UDim2.new(0.8, 0, 0.2, 0) input.Position = UDim2.new(0.1, 0, 0.35, 0) input.BackgroundColor3 = Color3.fromRGB(50, 0, 80) input.TextColor3 = Color3.fromRGB(255, 255, 255) input.PlaceholderText = "Enter key here..." input.TextScaled = true input.Font = Enum.Font.SciFi input.BorderSizePixel = 0 local stroke = Instance.new("UIStroke", input) stroke.Thickness = 1.5 stroke.Color = Color3.fromRGB(180, 0, 255) -- Кнопка "Unlock GUI" local button = Instance.new("TextButton", mainFrame) button.Size = UDim2.new(0.6, 0, 0.2, 0) button.Position = UDim2.new(0.2, 0, 0.6, 0) button.BackgroundColor3 = Color3.fromRGB(70, 0, 100) button.Text = "Unlock GUI" button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextScaled = true button.Font = Enum.Font.GothamBold local btnGlow = Instance.new("UIStroke", button) btnGlow.Thickness = 2 btnGlow.Color = Color3.fromRGB(180, 0, 255) btnGlow.Transparency = 0.1 -- Кнопка "Get Key Link" local keyBtn = Instance.new("TextButton", mainFrame) keyBtn.Size = UDim2.new(0.5, 0, 0.15, 0) keyBtn.Position = UDim2.new(0.25, 0, 0.83, 0) keyBtn.BackgroundColor3 = Color3.fromRGB(10, 10, 10) keyBtn.Text = "Get Key Link" keyBtn.TextColor3 = Color3.fromRGB(255, 255, 255) keyBtn.TextScaled = true keyBtn.Font = Enum.Font.Fantasy local winGlow = Instance.new("UIStroke", keyBtn) winGlow.Color = Color3.fromRGB(90, 90, 255) winGlow.Thickness = 2 -- Копировать ключ keyBtn.MouseButton1Click:Connect(function() setclipboard("https://t.me/+j-_fNjLrFHYzNTRi") StarterGui:SetCore("SendNotification", { Title = "Outlaw Team", Text = "Copied Key URL to clipboard!", Duration = 3 }) end) -- Проверка ключа local tries = 0 local correctKey = "OUTLAW TEAM IS BEST2025!!!777 jdodokskwnshzoskjwnbdkksko" button.MouseButton1Click:Connect(function() if input.Text == correctKey then gui:Destroy() -- Запуск загрузчика MinHub local screenGui = Instance.new("ScreenGui", player.PlayerGui) screenGui.Name = "OutlawMinHubLoading" screenGui.ResetOnSpawn = false local blackFrame = Instance.new("Frame", screenGui) blackFrame.Size = UDim2.new(1, 0, 1, 0) blackFrame.BackgroundColor3 = Color3.new(0, 0, 0) blackFrame.BackgroundTransparency = 1 TweenService:Create(blackFrame, TweenInfo.new(3, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), { BackgroundTransparency = 0 }):Play() wait(3) local function showText(message, color) local label = Instance.new("TextLabel", blackFrame) label.Size = UDim2.new(1, 0, 0.2, 0) label.Position = UDim2.new(0, 0, 0.4, 0) label.BackgroundTransparency = 0.8 label.BackgroundColor3 = Color3.fromRGB(0, 0, 0) label.Text = message label.TextScaled = true label.TextColor3 = color or Color3.new(1, 1, 1) label.Font = Enum.Font.SciFi label.TextStrokeTransparency = 0.3 wait(3) TweenService:Create(label, TweenInfo.new(2), { TextTransparency = 1, BackgroundTransparency = 1 }):Play() wait(2.5) end showText("Loading MinHub . Credit To: ItzOutlaw!Team and NotRed!-ZHUB", Color3.fromRGB(255, 0, 255)) showText("GUI-HUB Loaded! 98% ...") showText("Installing") wait(2.5) screenGui:Destroy() pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/LuaCrack/Min/refs/heads/main/MinXoE"))() end) else tries += 1 StarterGui:SetCore("SendNotification", { Title = "Key Check", Text = "WRONG KEY! Attempts: " .. tries .. "/3", Duration = 2 }) if tries >= 3 then player:Kick("GET KEY IS AUTISM AYO BRO HERE: OUTLAW TEAM !") end end end)