Accessories not being added to specific player name

I just got back into coding a bit for roblox and tried to make a owner outfit but it doesn’t seem to work, even if it seems super simple. If someone could help that would be appreciated

local function addowneroutfit(player)
local hairpart = workspace.Hair
local facepart = workspace.Face
local owner = game.Workspace:FindFirstChild(“ThatOneNoobo”)
hairpart.Parent = owner
facepart.Parent = owner
end

Players.PlayerAdded:Connect(addowneroutfit)

Have you tried Humanoid:ApplyDescription()

1 Like