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?
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | plr.CharacterAppearanceLoaded:Connect( function (char) |
3 | local hum = char:WaitForChild( "Humanoid" ) |
4 | hum:RemoveAccessories() |
5 | end ) |
6 | end ) |