I want to add a GUI on top of people when they join that will be visible to everyone. When I try to put the BillBoardGUI that I have already made that is inside ServerStorage and put it inside of someone it doesn’t work and I dont even get an error for it sometimes.
This is what I’m trying right now
local Players = game:GetService("Players")
local boredomDisplay = game.ServerStorage.PlayerBoredomDisplay:Clone() -- Boredom is what I'm trying to display lol
local function giveDisplay(player)
boredomDisplay.Parent = player -- I've also tried parenting the GUI to the player's head but it also doesn't work
end
Players.PlayerAdded:Connect(giveDisplay)
I don’t know if this script is completely wrong or needs to add more variables or something but I’m clueless about what to do