Roblox Flip Inf Money And Auto Open Case Script
January 29, 2021
Roblox Flip Inf Money And Auto Open Case Script

Script by egg salad
Inf Money
-- Settings
local multiplier = 5 -- Increase for more money, decrease if you get high ping
-- Variable
local egg = game.ReplicatedStorage.GamesFolder.Crash.InProgress
local salad = game.ReplicatedStorage.Events.crash_request
local femboy = game:GetService("RunService")
-- Watch the money go
repeat wait() until egg.Value == false
salad:InvokeServer({"InputBet",game.Players.LocalPlayer.Cash.Value})
repeat wait() until egg.Value == true
repeat
for i = 1, multiplier do
spawn(function()
salad:InvokeServer({"CashOut"})
end)
end
femboy.RenderStepped:wait()
until egg.Value == false
Open Case
-- Settings
local crate = "Winter"
local amount = 25
-- Script
local femboy = game:GetService("RunService")
for i = 1, amount do
game.ReplicatedStorage.Events.crateroll_request:InvokeServer(crate)
femboy.RenderStepped:wait()
end