Advertisement
Sungmingamerpro13

CashProduct

Mar 11th, 2024
557
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1. local MPS = game:GetService("MarketplaceService")
  2.  
  3. local MoneyID = script.ID.Value
  4.  
  5. MPS.ProcessReceipt = function(Info)
  6.     if Info.ProductID == MoneyID then
  7.         local player = game.Players:GetPlayerByUserId(Info.PlayerId)
  8.         player.Money.Value = player.Money.Value + 25
  9.     end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement