Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Naming System Help?!

Asked by 10 years ago

So Im trying to set up a naming system but I want the people with the Gamepass to have a VIP Above their name! Please help

01local passId = 180687284 -- change this to your game pass ID.
02function isAuthenticated(player) -- checks to see if the player owns your pass
03    return game:GetService("GamePassService"):PlayerHasPass(player, passId)
04end
05 
06 
07 -- game pass
08local groupID = 1178831;
09local before_name = false;
10local ts = tostring
11game.Players.PlayerAdded:connect(function(player)
12repeat wait() until player.Character
13    local char = player.Character
14    getRole(player)
15    player.Changed:connect(function()
View all 60 lines...

1 answer

Log in to vote
0
Answered by 10 years ago

Im pretty sure you can't change the players name. You will have to add a billboard gui, add a text label and change the text to the players name + whatever name you want to add.

Ad

Answer this question