Skip to content

Instantly share code, notes, and snippets.

@casualdegenerate
Created April 21, 2022 14:50
Show Gist options
  • Save casualdegenerate/9f07a7bdd2a5e036b6ec5968734f6bf9 to your computer and use it in GitHub Desktop.
Save casualdegenerate/9f07a7bdd2a5e036b6ec5968734f6bf9 to your computer and use it in GitHub Desktop.
Removes the nametag in roblox.com/games/1068523756
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