local key = "80786" local link = "https://discord.com/channels/1393004783459242045/1393012153648414942" local gui = Instance.new("ScreenGui") local frame = Instance.new("Frame") local title = Instance.new("TextLabel") local input = Instance.new("TextBox") local getKey = Instance.new("TextButton") local submit = Instance.new("TextButton") local uis = game:GetService("UserInputService") local dragging, dragInput, dragStart, startPos gui.Name = "KeySystemGUI" gui.Parent = game.CoreGui frame.Name = "MainFrame" frame.Parent = gui frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.Position = UDim2.new(0.3, 0, 0.3, 0) frame.Size = UDim2.new(0, 320, 0, 180) frame.Active = true frame.Draggable = true title.Parent = frame title.Text = "Sistema de Key" title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundColor3 = Color3.fromRGB(45, 45, 45) title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 20 input.Parent = frame input.PlaceholderText = "Digite sua Key aqui" input.Position = UDim2.new(0.1, 0, 0.35, 0) input.Size = UDim2.new(0.8, 0, 0, 30) input.BackgroundColor3 = Color3.fromRGB(50, 50, 50) input.TextColor3 = Color3.fromRGB(255, 255, 255) input.Font = Enum.Font.Gotham input.TextSize = 16 getKey.Parent = frame getKey.Text = "Copiar link da Key" getKey.Position = UDim2.new(0.1, 0, 0.6, 0) getKey.Size = UDim2.new(0.8, 0, 0, 30) getKey.BackgroundColor3 = Color3.fromRGB(60, 60, 60) getKey.TextColor3 = Color3.fromRGB(255, 255, 255) getKey.Font = Enum.Font.Gotham getKey.TextSize = 16 submit.Parent = frame submit.Text = "Verificar Key" submit.Position = UDim2.new(0.1, 0, 0.8, 0) submit.Size = UDim2.new(0.8, 0, 0, 30) submit.BackgroundColor3 = Color3.fromRGB(70, 70, 70) submit.TextColor3 = Color3.fromRGB(255, 255, 255) submit.Font = Enum.Font.Gotham submit.TextSize = 16 getKey.MouseButton1Click:Connect(function() setclipboard(link) getKey.Text = "Link copiado!" end) submit.MouseButton1Click:Connect(function() if input.Text == key then frame:Destroy() loadstring(game:HttpGet("https://pastebin.com/raw/Abc12345"))() else submit.Text = "Key inválida!" wait(2) submit.Text = "Verificar Key" end end) frame.InputBegan:Connect(function(inputt) if inputt.UserInputType == Enum.UserInputType.MouseButton1 or inputt.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = inputt.Position startPos = frame.Position inputt.Changed:Connect(function() if inputt.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) frame.InputChanged:Connect(function(inputt) if inputt.UserInputType == Enum.UserInputType.MouseMovement or inputt.UserInputType == Enum.UserInputType.Touch then dragInput = inputt end end) uis.InputChanged:Connect(function(inputt) if inputt == dragInput and dragging then local delta = inputt.Position - dragStart frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end)