How would I change the players head tag's text?

so I am creating a game and I’m thinking about how I could manipulate the Roblox made head tag so I could e.g. do “avi (owner)” or something like that.

I’ve tried changing the characters name since that usually works on dummys and stuff, but it seems it doesnt work on players, any help appreciated.

1 Like

Have you tried changing the humanoid’s DisplayName property?

Humanoid.DisplayName = plr.Name .. " (Owner)"

Nametag.rbxm (5.2 KB)
Has a custom nametag (gives to avi/OP by default) + a rig for editing the name tag

name tag is stored in serverscriptservice

(Didn’t understand the topic well)

You need to change Humanoid.DisplayName and make sure that the DisplayDistanceType is set to viewer. Then you can do:

Player.Character.Humanoid.DisplayName = Player.Name .. " (owner)" 

there’s a DisplayName property??? omg I feel so stupid haha, ty

i would’ve gave all of you the solution but unfortunately i can only give it to one, sorry

You can actually give multiple solutions, although the method is unoffical

Method

1 Like

:white_check_mark: Solved by razorbites in post #2
:white_check_mark: Solved by Bikereh in post #3
:white_check_mark: Solved by MaddyRing in post #4
:white_check_mark: Solved by PandazDev in post #5

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.