local productId = 10101010 local function attemptPurchaseSpoof() local success, error = pcall(function() game:GetService("MarketplaceService"):SignalPromptProductPurchaseFinished(game.Players.LocalPlayer.UserId, productId, true) end) if success then print("Purchase spoof attempt completed for product ID: " .. productId) else warn("Failed to spoof purchase: " .. tostring(error)) end end attemptPurchaseSpoof() local function notify(message) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Purchase Script", Text = message, Duration = 5 }) end notify("Attempted purchase spoof for ID: " .. productId)