ADVERTISEMENTREMOVE ADS
Game icon

Flashpoint Max Upgrades (NO KEY) read description

Script preview thumbnail
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
Raw
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

Comments

3 comments
to add a comment
He

kral chatgpt yaptırmıssın ama eline saglık :D

0
0
Xi

i dont get this

0
0
Sp

Does not work anymore

0
0
ADVERTISEMENTREMOVE ADS