Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. game.Players.ChildAdded:connect(function(player)
  2. local stats = Instance.new("Model",player)
  3. stats.Name="leaderstats"
  4. local money = Instance.new("IntValue",stats)
  5. money.Name="Currency Name Here"
  6. money.Value=1000 -- Change Your Starting Money
  7. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement