0% found this document useful (0 votes)
2K views1 page

Reroll - GG Infinite Money Script

This script opens cases and sells skins in the game. It has a master toggle to enable or disable the script. It can open cases slowly to seem legit or quickly. It opens the specified case and sells any unblacklisted skins, skipping melee, bronze, silver, gold, diamond, and unobtainable skins. The script runs in a loop as long as the master toggle is enabled.

Uploaded by

Bartek Kwasicki
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views1 page

Reroll - GG Infinite Money Script

This script opens cases and sells skins in the game. It has a master toggle to enable or disable the script. It can open cases slowly to seem legit or quickly. It opens the specified case and sells any unblacklisted skins, skipping melee, bronze, silver, gold, diamond, and unobtainable skins. The script runs in a loop as long as the master toggle is enabled.

Uploaded by

Bartek Kwasicki
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

getgenv().

Config = {
Enabled = true, --[Master Toggle]--
Legit = false, --[Opens Slower to Seem Legit]--
Case = "breakout_case", --[Case You Want to Open]--
Blacklist = {"Melee", "Bronze", "Silver", "Gold", "Diamond", "Unobtainable"}, --
[Items You Don't Want to Sell]--
}

local LocalPlayer = game:GetService("Players").LocalPlayer


local Data = LocalPlayer.Data
local Remotes = game:GetService("ReplicatedStorage").Remotes

while Config.Enabled do
if Config.Legit then
task.wait(3)
else
task.wait()
end

Remotes.BuyCase:FireServer(Config.Case)
Remotes.BuyKey:FireServer(Config.Case)
Remotes.OpenCase:InvokeServer(Config.Case, 3)

for _,v in next, Data.Inventory.Skins:GetDescendants() do


if not table.find(Config.Blacklist, v.Parent.Name) then
Remotes.SellSkin:FireServer(v.Name, "Factory New")
end
end
end

You might also like