Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.PlayerAdded:connect(function(player)
- local stats = Instance.new('Model')
- stats.Name = "leaderstats"
- stats.Parent = player
- --[[ local Nombre = Instance.new('IntValue', stats)|LO QUE ESTA DE VERDE |
- nombre.Name = 'Nombre' | LO PUEDES BORRAR |
- nombre.Value = 0 | ES UNA GUIA |
- --]]
- local cash = Instance.new('IntValue', stats)
- cash.Name = 'Cash'
- cash.Value = 0
- local xp = Instance.new('IntValue', stats)
- xp.Name = 'EXP'
- xp.Value = 0
- local points = Instance.new('IntValue', stats)
- points.Name = 'Points'
- points.Value = 0
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement