Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local Whitelisted = {
- [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
- }
- Players.PlayerAdded:Connect(function(plr)
- if Whitelisted[plr.UserId] then
- plr.CharacterAdded:Connect(function(char)
- char.Humanoid.DisplayName = "["..Whitelisted[plr.UserId].."] "..char.Humanoid.DisplayName.." "
- end)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement