|
| 03 Jul 2013 10:38 PM |
Okay, so I have a group that has rank names that are TERRIBLY long. I have a rank leaderboard, but the rank names are too long. Is there any way I can set custom rank names for the number of the rank that it is in the group?
The script is:
game.Players.PlayerAdded:connect(function(P) repeat wait() until P:findFirstChild("leaderstats") local Rank = Instance.new("StringValue", P.leaderstats) Rank.Name = "Rank" Rank.Value = P:GetRoleInGroup(892279) end) |
|
|
| Report Abuse |
|
|
|
| 03 Jul 2013 11:16 PM |
The only way using that script would be to change the ranks in the actual group, Im a noob at Lua so there might be other ways.
llorT ツ(Floodcheck always wins) |
|
|
| Report Abuse |
|
|
|
| 03 Jul 2013 11:19 PM |
Player:GetRankInGroup(GroupID) returns the number rank in the group.
http://wiki.roblox.com/index.php/GetRankInGroup_(Method) |
|
|
| Report Abuse |
|
|
|
| 03 Jul 2013 11:57 PM |
| I just want to form a custom, shortened form of the group role. |
|
|
| Report Abuse |
|
|
| |
|