Is there a script for a Rank Only Appearing Gui?
Is there an way/script that enable a GUI appear to a certain rank on a game?
P.S: U need to have a certain rank in a certain group to get the same rank in the game.
Example:
I'm the rank "Visitor", so the GUI appears for me and the others who have the same rank as me.
I'm the rank "Unkown", the GUI doesn't appear for me and for the others who have the same rank as me.
Here's the script of the ranking system:
1 | game.Players.PlayerAdded:connect( function (player) |
2 | if player:GetRankInGroup( 2671856 ) > = 8 then |
3 | player.Team = "Officers" |
4 | elseif player:GetRankInGroup( 2671856 ) < 8 then |
5 | player.Team = "Unlisted" |
7 | player.TeamColor = "Visitors" |