Created
April 21, 2022 14:50
-
-
Save casualdegenerate/9f07a7bdd2a5e036b6ec5968734f6bf9 to your computer and use it in GitHub Desktop.
Removes the nametag in roblox.com/games/1068523756
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local lp = game:GetService("Players").LocalPlayer | |
local function clear(Character) | |
local nt = Character:WaitForChild('Head'):WaitForChild('NameTag') | |
nt:ClearAllChildren() | |
end | |
lp.CharacterAdded:Connect(function(Character) | |
clear(Character) | |
end) | |
if lp.Character then | |
clear(lp.Character) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment