How to make GetRankInGroup show name?

I want to make a GUI sign show a players rank in the group.
I made the code shown below , but it showed the number of their rank.
Is it possible to make it show the name in any way?


local Sign = script.Parent
local Player = game.Players.LocalPlayer
local Rank = Player:GetRankInGroup(6098691)
Sign.Text = Rank

while true do
	wait(60)
	Sign.Text = Rank
end
1 Like

Instead of doing GetRankInGroup, I think you’re better off doing GetRoleInGroup in this case.

7 Likes

Works.
Thank you.

execute 30 characters

1 Like