Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
347 changes: 347 additions & 0 deletions Básico hub
Original file line number Diff line number Diff line change
@@ -0,0 +1,347 @@
--[[
Básico Hub | Universal
Inclui: Geral, Blox Fruits, Meme Sea, Roube um Ovo e Project Delta
Recurso: Sistema de Auto Execute (Persistente entre servidores)
--]]

-- Serviços do Roblox
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local PlaceId = game.PlaceId

-- Carrega a biblioteca Rayfield
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

-- Cria a janela principal do Hub
local Window = Rayfield:CreateWindow({
Name = "Básico Hub Beta | 1.0v",
LoadingTitle = "Básico Hub beta",
LoadingSubtitle = "Painel Principal",
ConfigurationSaving = { Enabled = false },
Discord = { Enabled = false },
KeySystem = false
})

--------------------------------------------------------------------------------
-- FUNÇÃO DE AUTO EXECUTE
--------------------------------------------------------------------------------
local function configurarAutoExec(nomeScript, urlScript)
local codigoAuto = 'loadstring(game:HttpGet("' .. urlScript .. '"))()'

if queue_on_teleport then
queue_on_teleport(codigoAuto)
end

if writefile then
pcall(function()
writefile("BasicoHub_AutoExec.lua", codigoAuto)
end)
end

Rayfield:Notify({
Title = "Auto Execute Ativado! 🔄",
Content = nomeScript .. " será executado automaticamente ao entrar no jogo.",
Duration = 4,
Image = 4483362458,
})
end

--------------------------------------------------------------------------------
-- 1. ABA GERAL (UNIVERSAL & INFORMAÇÕES)
--------------------------------------------------------------------------------
local MainTab = Window:CreateTab("Geral 🌐", 4483362458)

MainTab:CreateSection("Informações do Jogador")
MainTab:CreateLabel("👤 Jogador: " .. LocalPlayer.Name .. " (@" .. LocalPlayer.DisplayName .. ")")
MainTab:CreateLabel("🎮 ID do Servidor/Jogo: " .. tostring(PlaceId))

MainTab:CreateSection("Scripts Universais (Qualquer Jogo)")

-- OMG Hub
local omgExec = false
local omgURL = "https://raw.githubusercontent.com/Omgshit/Scripts/main/MainLoader.lua"
MainTab:CreateButton({
Name = "OMG Hub (Com Key 🔑)",
Callback = function()
if not omgExec then
local ok = pcall(function() loadstring(game:HttpGet(omgURL))() end)
if ok then omgExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar OMG Hub.", Duration=3}) end
end
end,
})
MainTab:CreateToggle({
Name = "Auto Execute: OMG Hub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("OMG Hub", omgURL) end end,
})

--------------------------------------------------------------------------------
-- 2. ABA BLOX FRUITS
--------------------------------------------------------------------------------
local BloxFruitsTab = Window:CreateTab("Blox Fruits ⚔️", 4483362458)

-- Banana Hub
local bananaExec = false
local bananaURL = "https://raw.githubusercontent.com/bloxfruitsnokey/Banana/refs/heads/main/Banana/script.luau"
BloxFruitsTab:CreateSection("Banana Hub")
BloxFruitsTab:CreateButton({
Name = "Banana Hub (Sem Key)",
Callback = function()
if not bananaExec then
local ok = pcall(function() loadstring(game:HttpGet(bananaURL))() end)
if ok then
bananaExec = true
Rayfield:Notify({ Title = "Sucesso! ✅", Content = "Banana Hub executado com sucesso.", Duration = 4 })
else
Rayfield:Notify({ Title = "Erro ❌", Content = "Falha ao carregar o Banana Hub.", Duration = 4 })
end
else
Rayfield:Notify({ Title = "Aviso ⚠️", Content = "Este script já foi executado nesta sessão.", Duration = 3 })
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: Banana Hub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("Banana Hub", bananaURL) end end,
})

-- King Ruby
local krExec = false
local krURL = "https://raw.githubusercontent.com/bloxfruitsnokey/Fluent/refs/heads/main/Basic/script.luau"
BloxFruitsTab:CreateSection("King Hub")
BloxFruitsTab:CreateButton({
Name = "Básico Hub no key (King Ruby)",
Callback = function()
if not krExec then
local ok = pcall(function() loadstring(game:HttpGet(krURL))() end)
if ok then krExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: King Ruby",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("King Ruby", krURL) end end,
})

-- EZ Hub
local ezExec = false
local ezURL = "https://raw.githubusercontent.com/bloxfruitsnokey/Fluent/refs/heads/main/EZ/script.luau"
BloxFruitsTab:CreateSection("EZ Hub")
BloxFruitsTab:CreateButton({
Name = "EZ Hub no key Blox frut",
Callback = function()
if not ezExec then
local ok = pcall(function() loadstring(game:HttpGet(ezURL))() end)
if ok then ezExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: EZ Hub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("EZ Hub", ezURL) end end,
})

-- REDZ Hub
local redzBFExec = false
local redzURL = "https://rawscripts.net/raw/Universal-Script-Redz-hub-205954"
BloxFruitsTab:CreateSection("REDZ Hub")
BloxFruitsTab:CreateButton({
Name = "REDZ Hub",
Callback = function()
if not redzBFExec then
local ok = pcall(function() loadstring(game:HttpGet(redzURL))() end)
if ok then redzBFExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: REDZ Hub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("REDZ Hub", redzURL) end end,
})

-- Teddy Hub
local tdExec = false
local tdURL = "https://raw.githubusercontent.com/Teddyseetink/Haidepzai/refs/heads/main/TeddyHub.lua"
BloxFruitsTab:CreateSection("Teddy Hub")
BloxFruitsTab:CreateButton({
Name = "Teddy Hub",
Callback = function()
if not tdExec then
local ok = pcall(function() loadstring(game:HttpGet(tdURL))() end)
if ok then tdExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: Teddy Hub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("Teddy Hub", tdURL) end end,
})

-- Quantum Onyx
local qoExec = false
local qoURL = "https://rawscripts.net/raw/Universal-Script-Quantum-Onyx-Project-32118"
BloxFruitsTab:CreateSection("Quantum Onyx")
BloxFruitsTab:CreateButton({
Name = "Quantum Onyx",
Callback = function()
if not qoExec then
local ok = pcall(function() loadstring(game:HttpGet(qoURL))() end)
if ok then qoExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: Quantum Onyx",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("Quantum Onyx", qoURL) end end,
})

-- Dragon X Hub
local dxExec = false
local dxURL = "https://raw.githubusercontent.com/Tdk-Dragon/DragonX.lua/refs/heads/main/DragonX.lua.txt"
BloxFruitsTab:CreateSection("Dragon X Hub")
BloxFruitsTab:CreateButton({
Name = "Dragon X Hub",
Callback = function()
if not dxExec then
local ok = pcall(function() loadstring(game:HttpGet(dxURL))() end)
if ok then dxExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: Dragon X Hub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("Dragon X Hub", dxURL) end end,
})

-- Speed Hub X
local spExec = false
local spURL = "https://rawscripts.net/raw/Universal-Script-Speed-Hub-X-14461"
BloxFruitsTab:CreateSection("Speed Hub X")
BloxFruitsTab:CreateButton({
Name = "Speed Hub X (Com Key 🔑)",
Callback = function()
if not spExec then
local ok = pcall(function() loadstring(game:HttpGet(spURL))() end)
if ok then spExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: Speed Hub X",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("Speed Hub X", spURL) end end,
})

-- Pado Hub
local padoExec = false
local padoURL = "https://rawscripts.net/raw/UPDATE-20-Blox-Fruits-Pado-Hub-9136"
BloxFruitsTab:CreateSection("Pado Hub")
BloxFruitsTab:CreateButton({
Name = "Pado Hub (Blox Fruits)",
Callback = function()
if not padoExec then
local ok = pcall(function() loadstring(game:HttpGet(padoURL))() end)
if ok then
padoExec = true
Rayfield:Notify({ Title = "Sucesso! ✅", Content = "Pado Hub executado com sucesso.", Duration = 4 })
else
Rayfield:Notify({ Title = "Erro ❌", Content = "Falha ao carregar o Pado Hub.", Duration = 4 })
end
else
Rayfield:Notify({ Title = "Aviso ⚠️", Content = "Este script já foi executado nesta sessão.", Duration = 3 })
end
end,
})
BloxFruitsTab:CreateToggle({
Name = "Auto Execute: Pado Hub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("Pado Hub", padoURL) end end,
})

--------------------------------------------------------------------------------
-- 3. ABA MEME SEA
--------------------------------------------------------------------------------
local MemeSeaTab = Window:CreateTab("Meme Sea 🌊", 4483362458)

local redzMSExec = false
MemeSeaTab:CreateSection("REDZ Hub")
MemeSeaTab:CreateButton({
Name = "REDZ Hub",
Callback = function()
if not redzMSExec then
local ok = pcall(function() loadstring(game:HttpGet(redzURL))() end)
if ok then redzMSExec = true else Rayfield:Notify({Title="Erro ❌", Content="Falha ao carregar.", Duration=3}) end
end
end,
})
MemeSeaTab:CreateToggle({
Name = "Auto Execute: REDZ Hub (Meme Sea)",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("REDZ Hub (Meme Sea)", redzURL) end end,
})

--------------------------------------------------------------------------------
-- 4. ABA ROUBE UM OVO
--------------------------------------------------------------------------------
local RoubeOvoTab = Window:CreateTab("Roube um ovo 🥚", 4483362458)

local nasiExec = false
local nasiURL = "https://raw.githubusercontent.com/Abdullahking20/loader-lua/main/loader"
RoubeOvoTab:CreateSection("Methions")
RoubeOvoTab:CreateButton({
Name = "king20",
Callback = function()
if not nasiExec then
local ok = pcall(function() loadstring(game:HttpGet(nasiURL))() end)
if ok then
nasiExec = true
Rayfield:Notify({ Title = "Sucesso! ✅", Content = "JualnasiRendang executado.", Duration = 4 })
else
Rayfield:Notify({ Title = "Erro ❌", Content = "Falha ao carregar.", Duration = 4 })
end
else
Rayfield:Notify({ Title = "Aviso ⚠️", Content = "Este script já foi executado.", Duration = 3 })
end
end,
})
RoubeOvoTab:CreateToggle({
Name = "Auto Execute: JualnasiRendang",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("Methions", nasiURL) end end,
})

--------------------------------------------------------------------------------
-- 5. ABA PROJECT DELTA
--------------------------------------------------------------------------------
local ProjectDeltaTab = Window:CreateTab("Project Delta 🔺", 4483362458)

local nickHubExec = false
local nickHubURL = "https://raw.githubusercontent.com/NickHubScript/ProjectDelta/main/loader.lua"

ProjectDeltaTab:CreateSection("NickHub - Project Delta")
ProjectDeltaTab:CreateButton({
Name = "NickHub (Project Delta)",
Callback = function()
if not nickHubExec then
local ok = pcall(function() loadstring(game:HttpGet(nickHubURL))() end)
if ok then
nickHubExec = true
Rayfield:Notify({ Title = "Sucesso! ✅", Content = "NickHub executado com sucesso.", Duration = 4 })
else
Rayfield:Notify({ Title = "Erro ❌", Content = "Falha ao carregar NickHub.", Duration = 4 })
end
end
end,
})
ProjectDeltaTab:CreateToggle({
Name = "Auto Execute: NickHub",
CurrentValue = false,
Callback = function(Value) if Value then configurarAutoExec("NickHub (Project Delta)", nickHubURL) end end,
})
15 changes: 0 additions & 15 deletions README.md

This file was deleted.