is there anyway to fix if i remove humanoid in a character they get naked
You can’t. Shirts and pants are handled through Humanoids, the only thing you can do is put different colors on the player’s character with Part.BrickColor/Part.Color as a replacement for the built in shirts and pants, for example a yellow head and arms, a blue upper/lower torso, and green legs for a classic noob character.
game:GetService("Players").PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
task.wait(2)
Character.Head.BrickColor = BrickColor.new("New Yeller")
Character.UpperTorso.BrickColor = BrickColor.new("Dark blue")
Character.LowerTorso.BrickColor = BrickColor.new("Dark blue")
Character.LeftUpperArm.BrickColor = BrickColor.new("New Yeller")
Character.RightUpperArm.BrickColor = BrickColor.new("New Yeller")
Character.LeftLowerArm.BrickColor = BrickColor.new("New Yeller")
Character.RightLowerArm.BrickColor = BrickColor.new("New Yeller")
Character.LeftHand.BrickColor = BrickColor.new("New Yeller")
Character.RightHand.BrickColor = BrickColor.new("New Yeller")
Character.LeftUpperLeg.BrickColor = BrickColor.new("Dark green")
Character.RightUpperLeg.BrickColor = BrickColor.new("Dark green")
Character.LeftLowerLeg.BrickColor = BrickColor.new("Dark green")
Character.RightLowerLeg.BrickColor = BrickColor.new("Dark green")
Character.LeftFoot.BrickColor = BrickColor.new("Dark green")
Character.RightFoot.BrickColor = BrickColor.new("Dark green")
end)
end)
The humanoid shouldn’t not be there anyway, if you delete the humanoid of a player Roblox floods the output/developer console with warnings. Why is the humanoid getting deleted?
If you really wanted to get advanced, you could make your own rig in Blender and UV Map it to accept the ShirtTemplate/PantTemplate texture ID from the clothes they’re wearing. Then it wouldn’t rely on a humanoid.
Why do you need to remove the humanoid?
It’s real simple, just press control z or command z.
Shirts and pants are rendered by the existence of the humanoid instance (they depend on it).
Why do you want to remove the humanoid instance anyway?