local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "Zed Menu",
LoadingTitle = "Ascension de Aura",
LoadingSubtitle = ":))",
ConfigurationSaving = { Enabled = false },
KeySystem = false
})
local LP = game:GetService("Players").LocalPlayer
local RunService = game:GetService("RunService")
-- DATABASE COMPLETA
local RawDatabase = {
{Name = "Final Summit", Req = 1e123, Mult = "1.25e+45x", Val = 1.25e45, Pos = Vector3.new(-555.087, 450.144, -745.794)},
{Name = "Spiral of Growth", Req = 1e121, Mult = "1.25e+43x", Val = 1.25e43, Pos = Vector3.new(-517.105, 276.655, -746.008)},
{Name = "Bell of Ascension", Req = 1e118, Mult = "1.25e+41x", Val = 1.25e41, Pos = Vector3.new(-468.544, 513.612, -1157.927)},
{Name = "Cloudbone Serpent", Req = 1e112, Mult = "1.24e+39x", Val = 1.24e39, Pos = Vector3.new(-861.443, 419.267, -651.777)},
{Name = "Mistfall Bridge", Req = 1e105, Mult = "1.25e+37x", Val = 1.25e37, Pos = Vector3.new(-272.495, 122.902, -957.837)},
{Name = "Tornado", Req = 1e106, Mult = "1.24e+35x", Val = 1.24e35, Pos = Vector3.new(1503.875, 112.248, 1003.369)},
{Name = "Oasis", Req = 1e75, Mult = "1.25e+33x", Val = 1.25e33, Pos = Vector3.new(1675.343, 55.223, 1260.819)},
{Name = "Skull of the Abyss", Req = 1e78, Mult = "1.25e+31x", Val = 1.25e31, Pos = Vector3.new(2102.565, 212.435, 1441.597)},
{Name = "Desert Tomb", Req = 1e64, Mult = "1.25e+29x", Val = 1.25e29, Pos = Vector3.new(1863.141, 207.243, 673.429)},
{Name = "Six Seven", Req = 1e61, Mult = "1.25e+27x", Val = 1.25e27, Pos = Vector3.new(1675.463, 96.028, 835.295)},
{Name = "Hunter Tower", Req = 1e57, Mult = "1.25e+25x", Val = 1.25e25, Pos = Vector3.new(1029.269, 601.445, 272.536)},
{Name = "Frozen Artifact", Req = 1e48, Mult = "1.25e+23x", Val = 1.25e23, Pos = Vector3.new(-799.703, 178.516, 653.924)},
{Name = "Enchanted Frog", Req = 1e48, Mult = "3e+21x", Val = 3e21, Pos = Vector3.new(1197.462, 121.401, -99.227)},
{Name = "Stone Heads", Req = 3e15, Mult = "3Qx", Val = 3e15, Pos = Vector3.new(358.425, 16.847, -91.085)},
{Name = "Fallen Star", Req = 3e13, Mult = "30T x", Val = 3e13, Pos = Vector3.new(284.863, 58.832, 109.785)}
}
table.sort(RawDatabase, function(a, b) return a.Val > b.Val end)
-----------------------------------------------------------------------------------------
-- REBIRTH CONFIG
-----------------------------------------------------------------------------------------
_G.AutoRebirth = false
local RebirthPadPos = Vector3.new(61.405, 12.717, 5.565)
local RebirthPoints = {Vector3.new(65.625, 7.552, -4.472), Vector3.new(64.354, 7.903, 6.721)}
local CurrentLock = 1
local TabRebirth = Window:CreateTab("Rebirth", 4483362458)
local TabTraining = Window:CreateTab("Treinamento", 4483362458)
TabRebirth:CreateToggle({
Name = "Auto Rebirth",
CurrentValue = false,
Callback = function(Value)
_G.AutoRebirth = Value
if Value then
local root = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart")
if root then
root.CFrame = CFrame.new(RebirthPadPos)
Rayfield:Notify({Title = "ZED HUB", Content = "Teleportado para o Rebirth Pad!", Duration = 2})
end
end
end,
})
-----------------------------------------------------------------------------------------
-- TRAINING SYSTEM
-----------------------------------------------------------------------------------------
TabTraining:CreateButton({
Name = "Em breve",
Callback = function()
local aura = 0
pcall(function()
local stat = LP.leaderstats:FindFirstChild("🟣 Aura")
if stat then aura = tonumber(stat.Value) or 0 end
end)
for _, area in ipairs(RawDatabase) do
if aura >= area.Req then
LP.Character.HumanoidRootPart.CFrame = CFrame.new(area.Pos)
return
end
end
end,
})
TabTraining:CreateSection("Lista de Ilhas")
for _, area in ipairs(RawDatabase) do
TabTraining:CreateButton({
Name = area.Name .. " [" .. area.Mult .. "]",
Callback = function() LP.Character.HumanoidRootPart.CFrame = CFrame.new(area.Pos) end,
})
end
-----------------------------------------------------------------------------------------
-- MAIN LOOP
-----------------------------------------------------------------------------------------
RunService.Heartbeat:Connect(function()
if _G.AutoRebirth then
local char = LP.Character
local root = char and char:FindFirstChild("HumanoidRootPart")
if root and char:FindFirstChild("Humanoid") then
local target = RebirthPoints[CurrentLock]
char.Humanoid:MoveTo(target)
if (root.Position - target).Magnitude < 4 then
CurrentLock = (CurrentLock == 1) and 2 or 1
end
end
end
end)
for i = 1, 482 do
local z = "ZED_HUB_V62_LOADER_" .. i
local math_burn = math.exp(math.sin(i))
if i == 482 then print("Zezezeze") end
end
Rayfield:Notify({Title = "Zzeee ", Content = "Sistema de Teleporte Rebirth Ativo!", Duration = 5})