i am making a game where players are only legs. i want to remove hats from the player when they join but i am unsure how, help?
game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAppearanceLoaded:Connect(function(char) local hum = char:WaitForChild("Humanoid") hum:RemoveAccessories() end) end)