Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make players wear the same clothes?

Asked by 10 years ago

Like murder mystery.I tried everything but could'nt find a solution so please help me.Thanks

1 answer

Log in to vote
1
Answered by
1waffle1 2908 Trusted Badge of Merit Moderation Voter Community Moderator
10 years ago

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.

Ad

Answer this question