Advertisement
2021_pogg

Untitled

Jun 3rd, 2021 (edited)
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. --\\ if your a da hood mod seeing this then mercy some of the people on this list dont hack :( - lerkermer
  2. --\\ if your a "scripter" looking at this then get your own code :/ , ez - lerkermer
  3. --\\ MAKE SURE U DONT BREAK THE EMOJI LIST CAUSE IF IT FAILS IT BREAKS SCRIPTWARE
  4.  
  5. local Emojis = { --\\ Before changing or adding an emoji make sure./its in the supported table thx
  6. '1842398889/πŸ‘‘',
  7. '1938509577/⭐'
  8. }
  9.  
  10.  
  11. --\\ The emoji must be in this table to be used if someone wants one not in this list then add it
  12. local SupportedEmojis = {'🎈','😬','πŸ¦‡','⭐','πŸ–€','πŸ’«','πŸŒ•','πŸ₯Ά','πŸ₯ΆπŸ₯΅','πŸ¦‹','✨','βœ…','🧐','πŸ’‹','❄️','🌟','🏈','🌈','πŸ”ž','πŸ’¦','πŸ’Ž','⚑','🌹','🌸','🀑','β›„','πŸ˜‹','😏','πŸ’€','😈','πŸ’―','✌','πŸ’–','πŸ‘‘','🌚','πŸ‘»','πŸ‘','😳','πŸ‰','🐾','πŸ˜‡','πŸ†','πŸ”«'}
  13.  
  14. --\\ Don't mess with anything below this
  15. function swagnames()
  16. for _,Player in pairs(game:GetService('Players'):GetChildren()) do
  17. if game.Workspace.Players:FindFirstChild(Player.Name) then
  18. if not Player.Character.UpperTorso:FindFirstChild('OriginalSize') then
  19. if not string.find(Player.Character:FindFirstChildWhichIsA('Humanoid').DisplayName, '%[') then
  20. Player.Character:FindFirstChildWhichIsA('Humanoid').DisplayName = ('[😎]' .. Player.DisplayName)
  21. end
  22. end
  23. end
  24. end
  25. for _,Player in pairs(game:GetService('Players'):GetChildren()) do
  26. for i,v in pairs(SupportedEmojis) do
  27. local CheckEmoji = v
  28. if table.find(Emojis, (tostring(Player.UserId) .. '/' .. v)) then
  29. if Player.Character then
  30. Player.Character:FindFirstChildWhichIsA('Humanoid').DisplayName = ('[' .. v .. '] ' .. Player.DisplayName)
  31. end
  32. end
  33. end
  34. end
  35. end
  36.  
  37. local success,err = pcall(swagnames)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement