Billboard GUI isnt visible if cloned from serverstorage to workspace

im trying to clone a billboard gui from server storage to a character but for some reason the billboard gui isnt visible however the cloned gui is inside the character/enemy

local attacksfolder = game.ServerStorage:WaitForChild("Attacks")

local symbol = attacksfolder:WaitForChild("Symbol")


local function attack(target)
	local clone = symbol:Clone()		
	deathslashanimation:Play()
	clone.Parent = target.Parent
	clone.Adornee = target
	wait(.4)
	myRoot.CFrame = target.CFrame + Vector3.new(0,0,5)
	wait(.2)
	slice:Play()
	target.Parent.Humanoid:TakeDamage(100)
	game:GetService("Debris"):AddItem(clone, 1)
end

--insert code here for the attack function to run

the “target” mentioned is a HumanoidRootPart

i havent seen any posts similar to my problem

2 Likes