Playerlist developer icon?

I have a question regarding the Developer icon on the PlayerList.

  • Is it currently possible to give the Icon below to other players, that is not the game owner/creator of the game’s group?
    • Playerlist icon: image
7 Likes

Or is there any way to access the PlayerList Core, then to change the Priority value of defined players?
I have done some research about this, but unsuccessfully found anything.

image

There is currently no way to do this. You would have to remake the entire playerlist ui. I hope they add some sort of functionality/api to this in the future. Custom Icon for Playerlist - #7 by colbert2677

4 Likes

Yeah, the only way this could be achieved is by disabling the default PlayerList Interface and creating your own. Implementing something like this requires you to mess with thousands of lines of code which you would find in the CoreGui which I don’t suggest you do unless you are aware of what you’re doing.

1 Like

It’s not as intimidating as it sounds, here’s the script Roblox uses.

The icons Roblox uses are on lines 162-173. I recommend checking around line 1020 for functionality.

A simple check to see if the player is in a developer group should work.

Something like this:


 if Player:IsInGroup(0000000) then icon = DEVELOPER_ICON_CUSTOM    
5 Likes