When someone joins they will have a certain kind of character Appearance. This script disables the character appearance but I want it to be true. What would I do it I just want only the shirt and pants to be disabled? But the hats will be enabled
local shirt = Instance.new("Shirt") local pants = Instance.new("Pants") local shirtID="http://www.roblox.com/asset/?id=51350913" local pantsID = "http://www.roblox.com/asset/?id=137169695" game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) player.CanLoadCharacterAppearance=false --This is what is taking away all clothing shirt.ShirtTemplate=shirtID shirt.Parent=player.Character pants.PantsTemplate=pantsID pants.Parent=player.Character end) end)