It’s like something where it identifies you as the [Owner] or like [Head Builder] (I did [MAD] in the title bc that’s my display name)
Scripting helpers is not a request site! (I'll provide the code though) Here's the code :
01 | local players = game:GetService( "Players" ) |
02 | local chatservice = require(game.ServerScriptService:WaitForChild( "ChatServiceRunner" ):WaitForChild( "ChatService" )) |
03 | game.Players.PlayerAdded:Connect( function (plr) |
04 | if plr.UserId = = 1367449480 then |
05 | chatservice.SpeakerAdded:Connect( function (playerName) |
06 | local speaker = chatservice:GetSpeaker(playerName) |
07 | speaker:SetExtraData( "Tags" , { { TagText = "MAD" , TagColor = Color 3. fromRGB( 255 , 0 , 0 ) } } ) |
08 | end ) |
09 | end |
10 | end ) |
i got this:
01 | local players = game:GetService( "Players" ) |
02 | local chatService = require(game.ServerScriptService:WaitForChild( "ChatServiceRunner" ):WaitForChild( "ChatService" )) |
03 |
04 | local tags = { |
05 | [ 1367449480 ] = { TagText = "Owner" , TagColor = Color 3. fromRGB( 255 , 0 , 0 ) } , |
06 | } |
07 |
08 | chatService.SpeakerAdded:Connect( function (playerName) |
09 | local speaker = chatService:GetSpeaker(playerName) |
10 | local player = game.Players [ playerName ] |
11 |
12 | if tags [ player.UserId ] then |
13 | speaker:SetExtraData( "Tags" , { tags [ player.UserId ] } ) |
14 | end |
15 | end ) |