Like murder mystery.I tried everything but could'nt find a solution so please help me.Thanks
Players' characters have objects inside them that define their appearance, including Shirt
, Pants
, and all of the package objects. In the Torso is a decal called "roblox" which holds the t-shirt. Its texture is blank if the player isn't wearing one. If you clear all characters of these related objects and clone your own into them, they will all be wearing the same shirt and pants and t-shirt. Since packages have their own textures, you might want to replace those, too. If you just want to erase everyone's personal appearance and replace it with your generated one then delete everything super-classified as "CharacterAppearance" (if x:IsA("CharacterAppearance")then x:Destroy()end
) and remove the t-shirt, then insert your own appearance-related objects so everyone will look how you tell them to.