[EF] NameTag - with support for groups

Hello Developers! :roblox_light:

I have prepared for you a small nametag system with support for group ranks and icons. That is, if your rank in the group, for example, is 2, then you will receive an admin icon above your head :derp:

How setup group ranks?

Instruction

Go to the script and go down to line 37, there you will need to insert the ID of your roblox group. Further from the line to 46, you can customize the output of icons for your roblox groups, you can add more ranks and icons in folder “icons”. In line 59-64 there is a block of code for issuing premium icons to premium roblox players
Снимок экрана 2023-04-26 215941

Screenshots and link

Screenshots

image

Link: EF_NameTag_v1.0.1 - Roblox

5 Likes

I would recommend to wrap your ranks in a table, making it way more accessible and easier to edit

local ranks = {
    [2] = {
        ['Icon'] = '',
        ['Text'] = 'Admin'
    }
}
9 Likes