My billboard no longer appears

Hai!

Yesterday in a game that uses a billboard that clones and goes into the player no longer works, it fails to clone and change its parent and its only stop working recently.

game.Players.PlayerAdded:Connect(function(plr)
	

	plr.CharacterAdded:Connect(function()
		local rank = game.ServerStorage.Rank:Clone()
		rank.Parent = plr.Character.Head
 
    end)
end)

Is this a server script? I would assume so

-- You can just do this
game.Players.PlayerAdded:Connect(function(plr)
	

	plr.CharacterAdded:Connect(function(Character) -- CharacterAdded always contains the Character of the player everytime it respawns.
		local rank = game.ServerStorage.Rank:Clone()
		rank.Parent = Character.Head
    end)
end)
3 Likes

Yeah, it is in ServerScriptService.

Hi!

I tried this it still does not appear, I looked on the server side it still doesn’t clone.

Never mind it has started to work, I made a silly mistake thank you!