Inf Money Reroll.gg Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts—a popular scripting and programming language.
We do not any harmful on your devices we always check it before we post online.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Use your dummy account first we are not responsible if your account getting Ban.
Script Code
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