of     1   

acoo250
#221199255Thursday, July 13, 2017 8:16 AM GMT

like so the player spawns with no hats/face/Shoulder pets
Wrathsong
#221199463Thursday, July 13, 2017 8:21 AM GMT

Humanoid:RemoveAccessories()
KiwiTronik
#221199934Thursday, July 13, 2017 8:34 AM GMT

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)
Wrathsong
#221200080Thursday, July 13, 2017 8:38 AM GMT

no..just read my reply
MinePlayersPE
#221201122Thursday, July 13, 2017 9:11 AM GMT

game:GetService("Players").PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) character:WaitForChild("Humanoid"):RemoveAccessories() end) end) Also, hats are now replaced with accessories.
KiwiTronik
#221201485Thursday, July 13, 2017 9:25 AM GMT

@wrath was just about to reply that i didnt know that was a thing, but internet went out :P
Wrathsong
#221201641Thursday, July 13, 2017 9:31 AM GMT

ah
DevJoas
#221204964Thursday, July 13, 2017 11:39 AM GMT

If you're only looking to remove Accessories, then Wrathsong gave you a perfect answer. If you are looking to not load any appearance from the character however, use this property: wiki.roblox.com/index.php?title=API:Class/StarterPlayer/LoadCharacterAppearance
Wrathsong
#221230173Thursday, July 13, 2017 7:27 PM GMT

possibly an even better answer ^ lol

    of     1