Advertisement
Guest User

here you go

a guest
Jan 17th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(player)
  2.  
  3. local leaderstats = Instance.new("IntValue")
  4. leaderstats.Name = "leaderstats"
  5. leaderstats.Value = 0
  6.  
  7. local rank = Instance.new("StringValue")
  8. rank.Name = "Rank"-- You Can Change The Name If You Want , Just Delete Group Rank And Type Another Name.
  9. rank.Value = player:GetRoleInGroup(3047422) --Delete Your Grourp ID And Put Your Group ID There.
  10.  
  11.  
  12. leaderstats.Parent = player
  13. rank.Parent = leaderstats
  14.  
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement