Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Workspace.ChildAdded:connect(function(plr)
- local name = plr.Name
- local playerinplayers = game.Players:FindFirstChild(plr.Name)
- plr:WaitForChild("Humanoid").DisplayDistanceType = "None"
- if playerinplayers ~= nil then
- playerinplayers.CanLoadCharacterAppearance = true
- local clone = game.ReplicatedStorage.NameTags:WaitForChild("Name"):Clone()
- clone.Parent = plr.Head
- clone.Adornee = plr.Head
- clone:WaitForChild("TextLabel").Text = name
- if name == "CreationCharacter3" then -- Enter Your Name here
- game.ReplicatedStorage.NameTags:WaitForChild("DEV"):Clone().Parent = plr.Head
- plr.Head:WaitForChild("VIP"):Destroy()
- end
- if name == "HCTGT_RBLX" then -- Enter other Devs Name
- game.ReplicatedStorage.NameTags:WaitForChild("DEV"):Clone().Parent = plr.Head
- plr.Head:WaitForChild("VIP"):Destroy()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement