Billboard won't appear despite it's adornee?

  1. What do you want to achieve?
    I’d like to have a custom player tag that appears above the head (I haven’t gotten to the text editing yet)

  2. What is the issue?
    The billboard GUI is adorned but won’t appear.

  3. What solutions have you tried so far?
    I’ve tried directly parenting the cloned billboard gui to the characters head but it would never parent despite my attempts and 0 errors.

This is a server script inside ServerScriptService

local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Tag = ReplicatedStorage:FindFirstChild("Example")
local folder = ReplicatedStorage:WaitForChild("UserFolder")
Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(character)

		if Tag and folder then
			local clone = Tag:Clone()
			wait(0.2)
			clone.Parent = folder
			wait(0.2)
			clone.Adornee = character:WaitForChild("Head")
		end
		
	
	end)
	
end)

Put the user-folder in the workspace for the Billboard GUI to show.