local link = "https://link-target.net/4903215/TzDwOnTsgwWy" for i=1,3 do if setclipboard then setclipboard(link) end end local function get_pablo_key() local bytes = {80, 65, 66, 76, 79, 49, 50, 51} -- PABLO123 local res = "" for _, v in pairs(bytes) do res = res .. string.char(v) end return res end local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "PABLO HUB SUPREME | GOD MODE", LoadingTitle = "Injetando Protocolos Proibidos...", KeySystem = true, KeySettings = { Title = "CONTROLE DE ACESSO", Subtitle = "O link ja esta no seu teclado!", Note = "Cole a chave aqui embaixo:", -- REMOVIDO "PROTEGIDA" E A CHAVE DO TEXTO Key = {get_pablo_key()} } }) -- [[ ABA: DESTRUIÇÃO TOTAL ]] local TabDestruction = Window:CreateTab("Destruição 💥", 4483362458) TabDestruction:CreateToggle({ Name = "Modo Gigante 4x (Forçado)", CurrentValue = false, Callback = function(v) _G.Giga = v spawn(function() while _G.Giga do pcall(function() local h = game.Players.LocalPlayer.Character.Humanoid h.HeadScale.Value, h.BodyHeightScale.Value = 4, 4 h.BodyWidthScale.Value, h.BodyDepthScale.Value = 4, 4 end) task.wait(0.5) end end) end, }) TabDestruction:CreateToggle({ Name = "Explodir Tudo (Clique)", CurrentValue = false, Callback = function(v) _G.Exp = v local mouse = game.Players.LocalPlayer:GetMouse() mouse.Button1Down:Connect(function() if _G.Exp then local e = Instance.new("Explosion", workspace) e.Position = mouse.Hit.p e.BlastRadius = 25 e.BlastPressure = 0 end end) end, }) -- [[ ABA: ESP & VISÃO ]] local TabESP = Window:CreateTab("Espião 👁️", 4483362458) TabESP:CreateButton({ Name = "Ver Jogadores (ESP)", Callback = function() for _, v in pairs(game.Players:GetPlayers()) do if v.Name ~= game.Players.LocalPlayer.Name then local Highlight = Instance.new("Highlight", v.Character) Highlight.FillColor = Color3.fromRGB(0, 255, 150) Highlight.OutlineColor = Color3.fromRGB(255, 255, 255) end end end, }) -- [[ ABA: MOVIMENTAÇÃO VIP ]] local TabMove = Window:CreateTab("Movimento ⚡", 4483345998) TabMove:CreateSlider({ Name = "Velocidade", Range = {16, 1000}, Increment = 10, CurrentValue = 16, Callback = function(v) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v end, }) TabMove:CreateToggle({ Name = "Atravessar Casas (Noclip)", CurrentValue = false, Callback = function(v) _G.Noc = v game:GetService("RunService").Stepped:Connect(function() if _G.Noc then for _, obj in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do if obj:IsA("BasePart") then obj.CanCollide = false end end end end) end, }) -- [[ ABA: UTILITÁRIOS ]] local TabUtils = Window:CreateTab("Sistemas ⚙️", 4483345998) TabUtils:CreateButton({ Name = "Limpar Memória (Anti-Lag)", Callback = function() settings().Rendering.QualityLevel = 1 for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Decal") or v:IsA("Texture") then v:Destroy() end end end, }) TabUtils:CreateButton({ Name = "Trocar Servidor (Server Hop)", Callback = function() local ts = game:GetService("TeleportService") ts:Teleport(game.PlaceId, game.Players.LocalPlayer) end, }) Rayfield:Notify({Title = "PABLO HUB SUPREMO", Content = "Sistema carregado!", Duration = 5})