Advertisement
LightLifeCheetah

Roblox add stat

Feb 25th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. game.Players.PlayerAdded:connect (function(player)
  2. local leaderstats = Instance.new('Model')
  3. leaderstats.Name='leaderstats'
  4. leaderstats.Parent=player
  5.  
  6. local Stat = Instance.new('IntValue')
  7. Stat.Value=0
  8. Stat.Parent=leaderstats
  9. Stat.Name = 'Name'
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement