Help with respawn script breaking billboard gui

I have a respawn script that simply clones the werewolf in the workspace and then makes it go to where it should spawn but as soon as it respawns the green bar that indicates how much health he has disappears but is still inside the billboard gui its size is just so small you can’t see.

robloxapp-20220927-0856077.wmv (4.8 MB)

the respawn script is not 100 percent finished but the healthbar breaking is my main concern at the moment, i can fix everything else


local werewolf2 = repstorage.Werewolf

local pos = script.Parent.HumanoidRootPart.Position

print(pos)

local killme = script.Parent

script.Parent.Zombie.Died:Connect(function()
	local clone =script.Parent:Clone()
	clone.Parent = game.Workspace
	clone.Zombie.Health = clone.Zombie.MaxHealth
	clone:MoveTo(pos)
end)```

any help is appreciated!

In your formatting replace ` with ```

ok i just finished reformating the text

If the zombie respawns, are you changing the adornee to the new zombie?

no what exactly does the adornee do???

have you seen the video it show what the problem is i would reccomend wathcing it

ummmmm… what exactly does thee adornee do?

oh and would you like the health bars script???