#billboardgui after removed is without textlabel
10 messages · Page 1 of 1 (latest)
.
can you please explain the issue
basically there's an textlabel in the billboardgui
** You are now Level 5! **
and after the billboard gets removed, the text label just "disappears"
example is showed in the video above so i believe the issue is well explained
local serverStorage = game.ServerStorage
local znacznikTemplate = serverStorage:WaitForChild("Znacznik")
script.Parent.Touched:Connect(function(hit)
local character = hit.Parent
if character and character:FindFirstChild("Humanoid") then
local head = character:FindFirstChild("Head")
if head and not head:FindFirstChild("Znacznik") then
local znacznikClone = znacznikTemplate:Clone()
znacznikClone.Parent = head
end
end
end)
local deb = false
script.Parent.Touched:Connect(function(hit)
if deb then return end
deb = true
local character = hit.Parent
if character and character:FindFirstChild("Humanoid") then
local head = character:FindFirstChild("Head")
if head then
local znacznik = head:FindFirstChild("Znacznik")
if znacznik then
znacznik:Destroy()
end
end
end
task.wait(0.5)
deb = false
end)
I think those are better
@inland echo