ADVERTISEMENTREMOVE ADS
Flashpoint Max Upgrades (NO KEY) read description
43,670 views

Script Preview
Description
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.
Tested with
ADVERTISEMENTREMOVE ADS
58 Lines • 2.1 KiB
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
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments
kral chatgpt yaptırmıssın ama eline saglık :D
i dont get this
Does not work anymore