Advertisement
Guest User

Simple Roblox Rank Script

a guest
Apr 26th, 2021
2,259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. --made by ninov193
  2.  
  3. local function onJoin(player)
  4. local leaderstats = Instance.new("Folder")
  5. leaderstats.Name = "leaderstats"
  6. leaderstats.Parent = player
  7.  
  8. local Rank = Instance.new("StringValue")
  9. Rank.Parent = leaderstats
  10. Rank.Name = "Rank"
  11. --set the next line to the default rank
  12. Rank.Value = "Visitor"
  13.  
  14. ------------------------------------------------------------
  15.  
  16. if player.Name == "your name" then
  17. Rank.Value = "rank name"
  18. end
  19.  
  20. if player.Name == "other person" then
  21. Rank.Value = "rank name"
  22. end
  23.  
  24. if player.Name == "other person" then
  25. Rank.Value = "rank name"
  26. end
  27.  
  28. if player.Name == "other person" then
  29. Rank.Value = "rank name"
  30. end
  31. end
  32.  
  33. game.Players.PlayerAdded:Connect(onJoin)
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement