Advertisement
Sungmingamerpro13

Cash (Script)

May 8th, 2025
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.24 KB | None | 0 0
  1. local function AddCash(player, CashValue)
  2.     print(player.Name.."'s Cash: "..CashValue)
  3.    
  4.     player.Cash.Value += CashValue
  5. end
  6.  
  7. script.Parent.ClickDetector.MouseClick:Connect(function(player)
  8.     AddCash(player, 5)
  9.     script.Parent:Destroy()
  10. end)
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement