I have problem with my code. I think that it is good, but it shows that the taglabel is not parent of billlboardgui.
local ptags = --path
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
repeat wait() until character:WaitForChild("Head")
local plrtag = ptags:Clone()
plrtag.PlayerNameLabel = player.Name
if player.UserId == 1905648047 then
plrtag.DeveloperRank.Visible = true
else
plrtag.DeveloperRank.Visible = false
end
plrtag.Parent = character:WaitForChild("Head")
end)
end)