-- MIGUEL HUB | PROTECTED VERSION
local _0xLINK = "https://link-center.net/5213310/x6Fj77G6iHig"
local ScreenGui = Instance.new("ScreenGui")
local MainFrame = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local KeyInput = Instance.new("TextBox")
local CheckBtn = Instance.new("TextButton")
local CopyBtn = Instance.new("TextButton")
-- Pedaços da chave escondidos
local _p1 = "Key"
local _p2 = "2026"
ScreenGui.Parent = game:GetService("CoreGui")
MainFrame.Parent = ScreenGui
MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
MainFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
MainFrame.Size = UDim2.new(0, 300, 0, 220)
MainFrame.Active = true
MainFrame.Draggable = true
Title.Parent = MainFrame
Title.Size = UDim2.new(1, 0, 0, 40)
Title.Text = "MIGUEL HUB - SISTEMA DE CHAVE"
Title.TextColor3 = Color3.new(1, 1, 1)
Title.BackgroundTransparency = 1
local _p3 = "Free"
KeyInput.Parent = MainFrame
KeyInput.PlaceholderText = "Digite a chave aqui..."
KeyInput.Size = UDim2.new(0.8, 0, 0, 40)
KeyInput.Position = UDim2.new(0.1, 0, 0.25, 0)
KeyInput.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
KeyInput.TextColor3 = Color3.new(1, 1, 1)
CopyBtn.Parent = MainFrame
CopyBtn.Text = "COPIAR LINK (LINKVERTISE)"
CopyBtn.Size = UDim2.new(0.8, 0, 0, 35)
CopyBtn.Position = UDim2.new(0.1, 0, 0.5, 0)
CopyBtn.BackgroundColor3 = Color3.fromRGB(0, 100, 220)
CopyBtn.TextColor3 = Color3.new(1, 1, 1)
local _p4 = "Premium"
CheckBtn.Parent = MainFrame
CheckBtn.Text = "VERIFICAR E ENTRAR"
CheckBtn.Size = UDim2.new(0.8, 0, 0, 35)
CheckBtn.Position = UDim2.new(0.1, 0, 0.75, 0)
CheckBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 0)
CheckBtn.TextColor3 = Color3.new(1, 1, 1)
-- Função para remontar a chave secretamente
local function _GET_REAL_KEY()
return _p1 .. _p2 .. _p3 .. _p4
end
CopyBtn.MouseButton1Click:Connect(function()
setclipboard(_0xLINK)
CopyBtn.Text = "LINK COPIADO!"
task.wait(2)
CopyBtn.Text = "COPIAR LINK (LINKVERTISE)"
end)
local function IniciarScript()
ScreenGui:Destroy()
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "MIGUEL HUB | EXCLUSIVE",
LoadingTitle = "Carregando Funções...",
LoadingSubtitle = "by Miguel",
ConfigurationSaving = { Enabled = false }
})
local Tab1 = Window:CreateTab("Player", 4483362458)
Tab1:CreateSlider({
Name = "Velocidade",
Range = {16, 500},
Increment = 1,
CurrentValue = 16,
Callback = function(v) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v end,
})
Tab1:CreateToggle({
Name = "ESP",
CurrentValue = false,
Callback = function(v)
_G.ESP = v
while _G.ESP do
for _, p in pairs(game.Players:GetPlayers()) do
if p ~= game.Players.LocalPlayer and p.Character and not p.Character:FindFirstChild("Highlight") then
Instance.new("Highlight", p.Character).FillColor = Color3.new(1, 0, 0)
end
end
task.wait(2)
end
end,
})
end
CheckBtn.MouseButton1Click:Connect(function()
-- A chave é montada apenas neste segundo
local _TARGET = _GET_REAL_KEY()
if KeyInput.Text == _TARGET then
CheckBtn.Text = "SUCESSO!"
task.wait(0.5)
IniciarScript()
else
CheckBtn.Text = "CHAVE INCORRETA!"
CheckBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0)
task.wait(2)
CheckBtn.Text = "VERIFICAR E ENTRAR"
CheckBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 0)
end
end)
Comments
No comments yet
Be the first to share your thoughts!