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

Automatic Name Hiding Script [closed]

Asked by
Corogl 0
10 years ago

Me and my good friend Zusik (yes, THE Zusik) are having trouble finding & creating a script that does exactly what the title says; hides the names of every player in the game without having to click any GUI. We figure it's possible, but whenever we test them many times it works only for me (creator of the place) but once I die the script becomes invalid.

Does anyone happen to know of a working script that does exactly what we need? If required I can give you what we have for you to work off of.

Thanks in advance,

-- Corogl & Zusik

1
This has nothing to do with pathfinding. Please remove that tag. MarkOtaris 241 — 10y

Locked by FearMeIAmLag

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 10 years ago
game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(character)
local hc = character:WaitForChild("Head"):Clone()
hc.Name = "FakeHead"
hc.Parent = character
local w = Instance.new("Weld")
w.Part0 = character.Head
w.Part1 = hc
w.Parent = character.Head
character.Head.Transparency = 1
end)
end)
Ad