So I have this Overhead GUI in my game and everything is working fine, but I noticed that every time a player gets killed; the overhead GUI disappears and doesn’t spawn back. I tried disabling “Respawn On Reset” but that did not help & the Billboard GUI still disappears.
honestly it depends where you want the code to run
I think the easiest would be right inside the player added function like this:
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAppearanceLoaded:Connect(function(character)
-- add your code in here
-- you wouldnt need to wait for the character to join the world anymore
-- might want to edit your code a little because of that
end)
end)