Advertisement
Guest User

Currency giver (part1)

a guest
Jun 25th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(plr)
  2.    local stats = Instance.new("BoolValue",plr)
  3.    stats.Name = "leaderstats"
  4.    
  5.    local cash = Instance.new("IntValue",stats)
  6.    cash.Name = "Cash"
  7.    cash.Value = 9999999
  8. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement