Advertisement
Dfgjfj

Custom Emoji Display Name Roblox

Feb 7th, 2025
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1.  
  2.  
  3. local Players = game:GetService("Players")
  4.  
  5. local Whitelisted = {
  6. [game.CreatorId] = "πŸ”₯" -- Display Name of owner would be [πŸ”₯] (Owner Name) if you want to add more whitelisted player you gotta add a comma to the last line like [game.CreatorId] = "πŸ”₯", and then add a other one without comma
  7. }
  8. Players.PlayerAdded:Connect(function(plr)
  9.     if Whitelisted[plr.UserId] then      
  10.         plr.CharacterAdded:Connect(function(char)
  11.             char.Humanoid.DisplayName = "["..Whitelisted[plr.UserId].."] "..char.Humanoid.DisplayName.." "
  12.            
  13.         end)
  14.     end
  15. end)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement