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.

Flashpoint Max Upgrades (NO KEY) read description

Version / Update: v1.0.0
Download / Script Link
local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()

local Window = Rayfield:CreateWindow({
Name = "Quick Max Menu",
LoadingTitle = "Quick Max Menu",
LoadingSubtitle = "by merhabalar9784",
ConfigurationSaving = {
Enabled = false,
},
Discord = {
Enabled = false,
}
})

local RebirthTab = Window:CreateTab("Rebirth Upgrades", 4483362458)

local rebirthStats = {"Boost Duration", "Boost Speed", "Damage", "Health", "Speed"}

for _, statName in ipairs(rebirthStats) do
RebirthTab:CreateButton({
Name = "Set " .. statName .. " to 100M",
Callback = function()
local targetPlayer = game.Players:FindFirstChild("merhabalar9784")
if targetPlayer and targetPlayer:FindFirstChild("PlayerData") then
local data = targetPlayer.PlayerData
if data:FindFirstChild("RebirthUpgrades") then
local stat = data.RebirthUpgrades:FindFirstChild(statName)
if stat and (stat:IsA("IntValue") or stat:IsA("NumberValue")) then
stat.Value = 100000000
end
end
end
end,
})
end

local UpgradesTab = Window:CreateTab("Upgrades", 4483362458)

local upgradeStats = {"Boost Duration", "Boost Speed", "Damage", "Flashtime Speed", "Health", "Speed"}

for _, statName in ipairs(upgradeStats) do
UpgradesTab:CreateButton({
Name = "Set " .. statName .. " to 100M",
Callback = function()
local targetPlayer = game.Players:FindFirstChild("merhabalar9784")
if targetPlayer and targetPlayer:FindFirstChild("PlayerData") then
local data = targetPlayer.PlayerData
if data:FindFirstChild("Upgrades") then
local stat = data.Upgrades:FindFirstChild(statName)
if stat and (stat:IsA("IntValue") or stat:IsA("NumberValue")) then
stat.Value = 100000000
end
end
end
end,
})
end
[ View More ]
e24de5aa-d4d4-4aaa-b6ff-a9237f7ff972.webp


When the menu pops up, you can select which upgrade you want to Max. I hope this script helps. But the health is not working tho :(And you gotta change " local targetPlayer = game.Players:FindFirstChild("merhabalar9784") " parts with YOUR USERNAME. Or, it won't work.
 
Back
Top