this script will not work. keep getting error
ServerScriptService.Script:10: attempt to index nil with ‘Name’
local ss = game:GetService("ServerStorage")
print("Test")
local function playerAdded(player)
print("Test")
player.CharacterAdded:Connect(function(char)
print("Test")
local Nose = nil
print("Test")
if player.Team.Name == ("White") then
print("Test")
Nose = ss:WaitForChild("Nose"):Clone()
print("Test")
end
local hum = char:WaitForChild("Humanoid")
print("Test")
hum:AddAccessory(Nose)
print("Test")
end)
end
print("Test")
game.Players.PlayerAdded:Connect(playerAdded)
print("Test")