local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() -- Configuração da interface local Window = Rayfield:CreateWindow({ Name = "Xethus Hub [Cracked by Zv_yz] | Universal BR | The strongest Battlegrounds", LoadingTitle = "Carregando The strongest Battlegrounds", LoadingSubtitle = "Gerando Scripts..." }) -- Caminho para a pasta de configurações local ConfigFolder = "The strongest Battlegrounds" if not isfolder(ConfigFolder) then makefolder(ConfigFolder) end local ConfigFile = ConfigFolder .. "/The strongest Battlegrounds.json" -- Variáveis globais local SelectedScript = nil local AutoExecute = false local Scripts = { ["Zygard V2 Hub"] = "https://raw.githubusercontent.com/louismich4el/Zygarde/refs/heads/main/ZygardeV1.txt", ["Speed X Hub"] = "https://raw.githubusercontent.com/AhmadV99/Speed-Hub-X/main/Speed%20Hub%20X.lua", ["Legend HandlessYT Hub"] = "https://raw.githubusercontent.com/LOLking123456/Sans/refs/heads/main/Strongest%22%29%29%28%29", ["Reaper Hub"] = "https://raw.githubusercontent.com/AyoReaper/Reaper-Hub/main/loader.lua", ["Kade Hub"] = "https://raw.githubusercontent.com/skibiditoiletfan2007/Work/main/latest.lua", ["NS Hub"] = "https://raw.githubusercontent.com/OhhMyGehlee/wdas/main/78", ["Xtrey10 Hub"] = "https://raw.githubusercontent.com/xtrey10x/xtrey10x-hub/main/saitama", ["Gojo Hub"] = "https://raw.githubusercontent.com/Sakupenny/Main/main/GojoHub.lua", ["Forge Hub"] = "https://raw.githubusercontent.com/Skzuppy/forge-hub/main/loader.lua", ["SummitScripts Hub"] = "https://pastefy.app/v9VSOfM5/raw" } -- Função para salvar configurações local function SaveSettings() writefile(ConfigFile, game:GetService("HttpService"):JSONEncode({ SelectedScript = SelectedScript, AutoExecute = AutoExecute })) end -- Função para carregar configurações local function LoadSettings() if isfile(ConfigFile) then local settings = game:GetService("HttpService"):JSONDecode(readfile(ConfigFile)) SelectedScript = settings.SelectedScript AutoExecute = settings.AutoExecute end end -- Carregar configurações ao iniciar LoadSettings() -- Criar a aba "Scripts" local TabScripts = Window:CreateTab("Scripts", "Scroll") -- Toggle para Auto-Execute TabScripts:CreateToggle({ Name = "Auto-Execute", CurrentValue = AutoExecute, Callback = function(value) AutoExecute = value SaveSettings() Rayfield:Notify({ Title = "Configuração Atualizada", Content = AutoExecute and "Auto-Execute ativado" or "Auto-Execute desativado", Duration = 5 }) end }) -- Função para adicionar botões com scripts local function AddScriptButton(tab, name, url) tab:CreateButton({ Name = name, Callback = function() SelectedScript = url loadstring(game:HttpGet(url))() SaveSettings() Rayfield:Notify({ Title = "Xethus Hub [Cracked by Zv_yz]", Content = name .. " carregado com sucesso!", Duration = 5 }) end }) end -- Adicionar botões para os Scripts for name, url in pairs(Scripts) do AddScriptButton(TabScripts, name, url) end -- Execução automática no início, se ativado if AutoExecute and SelectedScript then local success, errorMsg = pcall(function() loadstring(game:HttpGet(SelectedScript))() end) if success then Rayfield:Notify({ Title = "Auto-Execute", Content = "Script executado automaticamente com sucesso!", Duration = 5 }) else Rayfield:Notify({ Title = "Erro no Auto-Execute", Content = "Erro ao executar o script: " .. errorMsg, Duration = 5 }) end end -- Criar a aba "Admins" com o ícone "icon-cable" local AdminTab = Window:CreateTab("Admins", "expand") -- Adicionar botões para scripts de Admin AddScriptButton(AdminTab, " Aimbot", "https://raw.githubusercontent.com/Yousuck780/troll-x/main/ahhhh") AddScriptButton(AdminTab, " Graficos Realistas", "https://raw.githubusercontent.com/Flybobbb/robloxscripts/main/rtx.lua") AddScriptButton(AdminTab, " Infinite Yield", "https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source") AddScriptButton(AdminTab, " Retirar Texturas", "https://rawscripts.net/raw/Universal-Script-antilag-15462") AddScriptButton(AdminTab, " Servidor Privado", "https://pastebin.com/raw/A4r1pHJY") AddScriptButton(AdminTab, " TP Tools", "https://pastebin.com/raw/qysTtrJD") -- Criar a aba "Redes Sociais" local SocialTab = Window:CreateTab("Redes Sociais","link") -- Adicionar botões para redes sociais SocialTab:CreateButton({ Name = "CRACKED BY ZV_YZ", Callback = function() setclipboard("https://discord.gg/Wgw9uG2CPJ") end }) SocialTab:CreateButton({ Name = "CRACKED BY ZV_YZ", Callback = function() setclipboard("https://discord.gg/Wgw9uG2CPJ") end }) SocialTab:CreateButton({ Name = "CRACKED BY ZV_YZ", Callback = function() setclipboard("https://discord.gg/Wgw9uG2CPJ") end }) SocialTab:CreateButton({ Name = "CRACKED BY ZV_YZ", Callback = function() setclipboard("https://discord.gg/Wgw9uG2CPJ") end }) -- Notificação inicial Rayfield:Notify({ Title = "Xethus Hub [Cracked by Zv_yz]", Content = "Scripts atualizados com sucesso!", Duration = 5 })