yea
local YourPart = workspace.nametagsremover
YourPart.Touched:Connect(function(hit)
if hit.Parent:FindFirstChildWhichIsA("BillBoardGui") then
hit.Parent:FindFirstChildWhichIsA("BillBoardGui"):Destroy()
end
end)
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
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.
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)
I pasted that scrpt and nothing works.
oops, i made a lil error can you try again? edited that script should work now.
works now, ty for help! this is concluded.