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!