Advertisement
Sungmingamerpro13

BuyScript

Dec 30th, 2022 (edited)
1,371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.27 KB | None | 0 0
  1. local Cost = 5
  2.  
  3. script.Parent.ClickDetector.MouseClick:Connect(function(player)
  4.     if player.Money.Value >= Cost then
  5.         player.Money.Value = player.Money.Value - Cost
  6.         game.ReplicatedStorage.Gamepasses.Medkit:Clone().Parent = player.Backpack
  7.     end
  8. end)
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement