Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function AddCash(player, CashValue)
- print(player.Name.."'s Cash: "..CashValue)
- player.Cash.Value += CashValue
- end
- script.Parent.ClickDetector.MouseClick:Connect(function(player)
- AddCash(player, 5)
- script.Parent:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement