im trying to make this script add a decal to the players "HEAD", but it just wont work 🤷♂️
local alreadylit = false
local function getPlayer()
if plr == nil then
plr = game.Players:GetPlayerFromCharacter(script.Parent.Parent)
end
return plr
end
plr = getPlayer()
plr.CharacterAdded:Connect(function()
if alreadylit == false then
local char = plr.Character
local charclone = game.ServerStorage.servstor.sukuna.Face2:Clone()
charclone.Parent = char:FindFirstChild("Head")
alreadylit = true
end
end)