What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Aura Ascension Script

Version / Update: v1.0.0
Download / Script Link
-- NUVIKTEAM - v1.0 AuraSCRIPT FREE
local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()

local autoRebirthEnabled = false
local rebirthDelay = 1
local antiAfkEnabled = false
local defaultWalkSpeed = 16

local autoChestClaimEnabled = false
local chestCooldown = 300
local lastChestClaim = 0
local chestReady = true

local chestPosition = Vector3.new(-3.31, 14.41, -14.95)

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local Player = Players.LocalPlayer
local VirtualUser = game:GetService("VirtualUser")

local Arenas = {
{name = "Spawn", x = 75.64, y = 13.87, z = -60.22, requirement = "Ninguno"},
{name = "Bano de fuego", x = 120.65, y = 11.91, z = -120.51, requirement = "100M+ Aura"},
{name = "Lava Oscura", x = 42.69, y = 18.20, z = -135.63, requirement = "1Qa+ Aura"},
{name = "Runas Antiguas", x = 245.21, y = 11.25, z = -78.57, requirement = "100Qi+ Aura"},
{name = "Campo de Electricidad", x = 71.57, y = 11.34, z = 94.56, requirement = "100Sp+ Aura"},
{name = "Reino divino", x = 67.07, y = 34.54, z = -297.74, requirement = "1No+ Aura"},
{name = "Paraiso Helado", x = -226.96, y = 13.07, z = -48.18, requirement = "100Dc+ Aura"},
{name = "Estrella caida", x = 290.63, y = 60.46, z = 140.55, requirement = "10Dd+ Aura"},
{name = "Rey", x = -125.94, y = 34.53, z = 120.83, requirement = "Boss"}
}

local function autoRebirth()
spawn(function()
while autoRebirthEnabled do
pcall(function()
game:GetService("ReplicatedStorage"):WaitForChild("Communication"):WaitForChild("RequestRebirth"):InvokeServer()
end)
task.wait(rebirthDelay)
end
end)
end

local function teleportToPosition(x, y, z)
if Player.Character and Player.Character:FindFirstChild("HumanoidRootPart") then
Player.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(x, y, z))
return true
end
return false
end

local function setWalkSpeed(speed)
if Player.Character and Player.Character:FindFirstChild("Humanoid") then
Player.Character.Humanoid.WalkSpeed = speed
return true
end
return false
end

local function getWalkSpeed()
if Player.Character and Player.Character:FindFirstChild("Humanoid") then
return Player.Character.Humanoid.WalkSpeed
end
return 16
end

local function claimChest()
local success = pcall(function()
if Player.Character and Player.Character:FindFirstChild("HumanoidRootPart") then
local savedPosition = Player.Character.HumanoidRootPart.CFrame
Player.Character.HumanoidRootPart.CFrame = CFrame.new(chestPosition)
task.wait(0.08)
Player.Character.HumanoidRootPart.CFrame = savedPosition
end
end)

if success then
lastChestClaim = tick()
chestReady = false
return true
end
return false
end

local function getChestCooldownRemaining()
if chestReady then
return 0
end
local elapsed = tick() - lastChestClaim
local remaining = chestCooldown - elapsed
if remaining <= 0 then
chestReady = true
return 0
end
return remaining
end

local function startAutoChestClaim()
spawn(function()
while autoChestClaimEnabled do
if chestReady then
claimChest()
end
wait(1)
end
end)
end

local function startAntiAfk()
spawn(function()
while antiAfkEnabled do
pcall(function()
VirtualUser:CaptureController()
VirtualUser:ClickButton2(Vector2.new())
end)
wait(60)
end
end)
end

Player.Idled:Connect(function()
if antiAfkEnabled then
pcall(function()
VirtualUser:CaptureController()
VirtualUser:ClickButton2(Vector2.new())
end)
end
end)

Player.CharacterAdded:Connect(function(char)
char:WaitForChild("Humanoid")
wait(0.5)
if defaultWalkSpeed ~= 16 then
setWalkSpeed(defaultWalkSpeed)
end
end)

local Window = Fluent:CreateWindow({
Title = "Aura Script",
SubTitle = "v1.0",
TabWidth = 160,
Size = UDim2.fromOffset(550, 480),
Acrylic = true,
Theme = "Dark",
MinimizeKey = Enum.KeyCode.LeftControl
})

local Tabs = {
Main = Window:AddTab({ Title = "Principal", Icon = "home" }),
Player = Window:AddTab({ Title = "Jugador", Icon = "user" }),
Settings = Window:AddTab({ Title = "Configuracion", Icon = "settings" })
}

Tabs.Main:AddSection("Auto Rebirth")

Tabs.Main:AddToggle("AutoRebirthToggle", {
Title = "Auto Rebirth",
Description = "Activa/desactiva el auto rebirth",
Default = false,
Callback = function(Value)
autoRebirthEnabled = Value
if Value then
autoRebirth()
end
end
})

Tabs.Main:AddButton({
Title = "Rebirth Manual",
Description = "Hacer un rebirth instantaneo",
Callback = function()
pcall(function()
game:GetService("ReplicatedStorage"):WaitForChild("Communication"):WaitForChild("RequestRebirth"):InvokeServer()
end)
end
})

Tabs.Main:AddInput("DelayInput", {
Title = "Delay entre Rebirths (segundos)",
Default = "1",
Placeholder = "Escribe el delay...",
Numeric = true,
Finished = true,
Callback = function(Value)
local num = tonumber(Value)
if num and num > 0 then
rebirthDelay = num
end
end
})

Tabs.Main:AddSection("Chest Group Claim")

Tabs.Main:AddToggle("AutoChestClaimToggle", {
Title = "Auto Chest Claim",
Description = "Reclama automaticamente cada 5 minutos",
Default = false,
Callback = function(Value)
autoChestClaimEnabled = Value
if Value then
startAutoChestClaim()
end
end
})

Tabs.Main:AddButton({
Title = "Claim Chest Manual",
Description = "TP al cofre, reclama y regresa a tu posicion",
Callback = function()
if chestReady then
claimChest()
end
end
})

Tabs.Main:AddButton({
Title = "TP al Cofre",
Description = "Solo te teleporta al cofre",
Callback = function()
teleportToPosition(-3.31, 14.41, -14.95)
end
})

Tabs.Main:AddButton({
Title = "Resetear Cooldown",
Description = "Forzar reset del cooldown",
Callback = function()
chestReady = true
lastChestClaim = 0
end
})

Tabs.Main:AddSection("Teleport - Arenas")

local arenaNames = {}
for _, arena in pairs(Arenas) do
table.insert(arenaNames, arena.name .. " [" .. arena.requirement .. "]")
end

local selectedArena = Arenas[1]

Tabs.Main:AddDropdown("ArenaDropdown", {
Title = "Seleccionar Arena",
Description = "Elige una arena para teleportarte",
Values = arenaNames,
Multi = false,
Default = 1,
Callback = function(Value)
for _, arena in pairs(Arenas) do
if string.find(Value, arena.name) then
selectedArena = arena
break
end
end
end
})

Tabs.Main:AddButton({
Title = "Teleport a Arena",
Description = "Te teletransporta a la arena seleccionada",
Callback = function()
if selectedArena then
teleportToPosition(selectedArena.x, selectedArena.y, selectedArena.z)
end
end
})

Tabs.Main:AddSection("Teleport Rapido")

Tabs.Main:AddButton({
Title = "Spawn",
Description = "Sin requisitos",
Callback = function()
teleportToPosition(75.64, 13.87, -60.22)
end
})

Tabs.Main:AddButton({
Title = "Bano de fuego",
Description = "Requisito: 100M+ Aura",
Callback = function()
teleportToPosition(120.65, 11.91, -120.51)
end
})

Tabs.Main:AddButton({
Title = "Lava Oscura",
Description = "Requisito: 1Qa+ Aura",
Callback = function()
teleportToPosition(42.69, 18.20, -135.63)
end
})

Tabs.Main:AddButton({
Title = "Runas Antiguas",
Description = "Requisito: 100Qi+ Aura",
Callback = function()
teleportToPosition(245.21, 11.25, -78.57)
end
})

Tabs.Main:AddButton({
Title = "Campo de Electricidad",
Description = "Requisito: 100Sp+ Aura",
Callback = function()
teleportToPosition(71.57, 11.34, 94.56)
end
})

Tabs.Main:AddButton({
Title = "Reino divino",
Description = "Requisito: 1No+ Aura",
Callback = function()
teleportToPosition(67.07, 34.54, -297.74)
end
})

Tabs.Main:AddButton({
Title = "Paraiso Helado",
Description = "Requisito: 100Dc+ Aura",
Callback = function()
teleportToPosition(-226.96, 13.07, -48.18)
end
})

Tabs.Main:AddButton({
Title = "Estrella caida",
Description = "Requisito: 10Dd+ Aura",
Callback = function()
teleportToPosition(290.63, 60.46, 140.55)
end
})

Tabs.Main:AddButton({
Title = "Rey",
Description = "Boss",
Callback = function()
teleportToPosition(-125.94, 34.53, 120.83)
end
})

Tabs.Player:AddSection("Velocidad de Movimiento")

Tabs.Player:AddInput("WalkSpeedInput", {
Title = "WalkSpeed Personalizado",
Default = "16",
Placeholder = "Escribe la velocidad...",
Numeric = true,
Finished = true,
Callback = function(Value)
local num = tonumber(Value)
if num and num >= 0 and num <= 500 then
defaultWalkSpeed = num
setWalkSpeed(num)
end
end
})

Tabs.Player:AddButton({
Title = "WalkSpeed 16 (Normal)",
Description = "Velocidad por defecto",
Callback = function()
defaultWalkSpeed = 16
setWalkSpeed(16)
end
})

Tabs.Player:AddButton({
Title = "WalkSpeed 50 (Rapido)",
Description = "Velocidad aumentada",
Callback = function()
defaultWalkSpeed = 50
setWalkSpeed(50)
end
})

Tabs.Player:AddButton({
Title = "WalkSpeed 100 (Muy Rapido)",
Description = "Velocidad alta",
Callback = function()
defaultWalkSpeed = 100
setWalkSpeed(100)
end
})

Tabs.Player:AddButton({
Title = "WalkSpeed 200 (Extremo)",
Description = "Velocidad extrema",
Callback = function()
defaultWalkSpeed = 200
setWalkSpeed(200)
end
})

Tabs.Player:AddSection("Anti AFK")

Tabs.Player:AddToggle("AntiAfkToggle", {
Title = "Anti AFK",
Description = "Evita que te expulsen por inactividad",
Default = false,
Callback = function(Value)
antiAfkEnabled = Value
if Value then
startAntiAfk()
end
end
})

Tabs.Player:AddSection("Salto")

Tabs.Player:AddInput("JumpPowerInput", {
Title = "JumpPower Personalizado",
Default = "50",
Placeholder = "Escribe la potencia de salto...",
Numeric = true,
Finished = true,
Callback = function(Value)
local num = tonumber(Value)
if num and num >= 0 and num <= 500 then
if Player.Character and Player.Character:FindFirstChild("Humanoid") then
Player.Character.Humanoid.JumpPower = num
end
end
end
})

Tabs.Player:AddButton({
Title = "JumpPower 50 (Normal)",
Description = "Salto por defecto",
Callback = function()
if Player.Character and Player.Character:FindFirstChild("Humanoid") then
Player.Character.Humanoid.JumpPower = 50
end
end
})

Tabs.Player:AddButton({
Title = "JumpPower 100 (Alto)",
Description = "Salto aumentado",
Callback = function()
if Player.Character and Player.Character:FindFirstChild("Humanoid") then
Player.Character.Humanoid.JumpPower = 100
end
end
})

Tabs.Player:AddButton({
Title = "JumpPower 200 (Muy Alto)",
Description = "Salto extremo",
Callback = function()
if Player.Character and Player.Character:FindFirstChild("Humanoid") then
Player.Character.Humanoid.JumpPower = 200
end
end
})

Tabs.Settings:AddSection("Temas de Interfaz")

Tabs.Settings:AddDropdown("ThemeDropdown", {
Title = "Tema de Interfaz",
Description = "Cambia el color de la interfaz",
Values = {"Dark", "Darker", "Rose", "Aqua"},
Multi = false,
Default = 1,
Callback = function(Value)
Fluent:SetTheme(Value)
end
})

SaveManager:SetLibrary(Fluent)
SaveManager:IgnoreThemeSettings()
SaveManager:SetIgnoreIndexes({})
SaveManager:SetFolder("AuraScript")
SaveManager:BuildConfigSection(Tabs.Settings)

InterfaceManager:SetLibrary(Fluent)
InterfaceManager:SetFolder("AuraScript")
InterfaceManager:BuildInterfaceSection(Tabs.Settings)

SaveManager:LoadAutoloadConfig()

Window:SelectTab(1)
[ View More ]
d7ced659-b6f8-4a3d-998d-b3a6c265fc56.webp


## Aura Script v1.0Complete script for Aura game on Roblox with multiple automated features.### Main Features:**Auto Rebirth**- Enables automatic rebirth with customizable delay- Manual rebirth button for instant use- Configure time between rebirths (any value in seconds)**Chest Group Claim**- Automatically claims group chest every 5 minutes- Teleports to chest, claims and returns to your original position- Internal cooldown system to prevent spam**Arena Teleports**- Spawn (No requirements)- Fire Bath (100M+ Aura)- Dark Lava (1Qa+ Aura)- Ancient Runes (100Qi+ Aura)- Electricity Field (100Sp+ Aura)- Divine Kingdom (1No+ Aura)- Frozen Paradise (100Dc+ Aura)- Fallen Star (10Dd+ Aura)- King (Boss)**Player Settings**- Customizable WalkSpeed (presets: 16, 50, 100, 200)- Customizable JumpPower (presets: 50, 100, 200)- Anti AFK to prevent being kicked for inactivity**Interface**- 4 available themes: Dark, Darker, Rose, Aqua- Auto save configuration- Minimize key: Left Control### How to use:1. Execute the script with your executor2. Use Main tab for rebirth and teleports3. Use Player tab to modify speed and jump4. Configure theme in Settings tab
 
Works on mobile
  1. Yes
Back
Top