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