I wan't to clone a Billboard GUI from ServerStorage, but idk how to give the clone a parent to my head.
Script so far:
local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui") game.Players.PlayerAdded:Connect(function(plr) if plr.Name == "XiFiZii" then local Clone = game.ServerStorage.BillboardGui:Clone() end end)
local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui") game.Players.PlayerAdded:Connect(function(plr) if plr.Name == "XiFiZii" then local Clone = game.ServerStorage.BillboardGui:Clone() Clone.Parent = plr.Character.Head end end)
Clone.Parent = game.Players.XiFiZii.Character.Head