Script for remover name tags with button

yea

local YourPart = workspace.nametagsremover
	YourPart.Touched:Connect(function(hit)
		if hit.Parent:FindFirstChildWhichIsA("BillBoardGui") then
		hit.Parent:FindFirstChildWhichIsA("BillBoardGui"):Destroy()
	end
	end)

change hit.Parent to hit.Parent.Head for both lines

1 Like

I believe it’s a property of humanoid.

what’s a property of humanoid?

The nametag. 30 word character limit.

no, if its a property of humanoid nothing will show, it has to be in a part.

2 Likes

not works, changed at both lines and nothing works

try this

local YourPart = --
YourPart.Touched:Connect(function(hit)
for i,v in pairs(hit.Parent:GetDescendants()) do
if v:IsA("BillboardGui") then
v:Destroy()
end
end
end)
1 Like

I pasted that scrpt and nothing works.

oops, i made a lil error can you try again? edited that script should work now.

1 Like

works now, ty for help! this is concluded.

1 Like