Advertisement
luchitasin9

Process Donation Script

Feb 6th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | Source Code | 0 0
  1. local MarketPlaceService = game:GetService("MarketplaceService")
  2. local player = game.Players.LocalPlayer
  3.  
  4. local devProductID = 2815910820 -- change it with your ID
  5.  
  6. local buyButton = script.Parent
  7.  
  8. buyButton.MouseButton1Click:Connect(function()
  9.     MarketPlaceService:PromptProductPurchase(player, devProductID)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement