First, you have to consider the fact that ROBLOXians may have more than one hat.
That said, hats are basically Hat
objects placed in the character model. Going through all children of the character, filtering out the hats and setting their Handle
children's transparency to 0 would be a good way to do this:
This code assumes that the player's name is ROBLOXian
1 | character = game.Players.ROBLOXian.Character; |
2 | for k, v in pairs (character:GetChildren()) do |
3 | if v.ClassName = = 'Hat' then |
4 | v.Handle.Transparency = 1 ; |