game.Players.PlayerAdded:connect(function(plr)
plr.CharacterAdded:connect(function(char)
repeat wait() until char:FindFirstChild:("Humanoid")
wait(2) -- enough time for the hats to load?
for _,v in pairs (char:GetChildren()) do
if v:IsA("Hat") then v:Destroy() end
end
end)
end) |