local r = game:GetService("ReplicatedStorage") local p, s, a = r.Remotes.SpinEvents.PurchaseSpin, r.Remotes.SpinEvents.PerformSpin, r.Remotes.UIEvents.AuroraCollect hookfunction(game:GetService("MarketplaceService").PromptPurchase, function() end) -- I attempted to block the purchase prompt, kinda works! local Part = workspace:FindFirstChild("Part") while true do task.wait(0.000000000001) pcall(function() for i=1,10 do p:InvokeServer(); s:InvokeServer() end for i=1,200 do a:FireServer(Part) end end) end