XxxLloyd061302xxX

Money Leaderboard

May 29th, 2018
2,987
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(p)
  2. local stats = Instance.new("IntValue")
  3. stats.Name = "leaderstats"
  4. stats.Parent = p
  5.  
  6. local money = Instance.new("IntValue")
  7. money.Name = "Money" -- Change "Money" to anything you want to name it like "Cash"
  8. money.Value = 90000 -- Change the value to how many you want when the player joins the game
  9. money.Parent = stats
  10. end)
Add Comment
Please, Sign In to add comment