VERY similar to the concept of Murder Mystery. It seems as if somehow hats are breaking my scripts.. I really want to know how to make everyone look like only one figure, plain looking (looking like a newbie, to put it generally). I figured that could help resolute the scripts? Any help is appreciated. Thanks.
EDIT in 2020; Use HumanoidDescription or
Play game
Copy your Character in workspace or use the RigBuilderPlugin
Stop game
Remove everything except visual Character assets
Edit Character Model as needed
Paste Character in StarterPlayer folder
Name Model StarterCharacter
Old way
The simple way is to make a new account and dress them like a noob, then use CharacterAppearance to change their appearance when they join. The other way is to remove everything when they join and die.
--ClassNames or Names local banned = { Hat = true, Shirt = true, Pants = true, FlowerHat = true; Dominus = true; ThatOneThing = true; } function delete(obj) if banned[obj.ClassName] or banned[obj.Name] then game.Debris:AddItem(obj, 1/30) print("Deleted: " ..obj.Name) end end game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(c) c.DescendantAdded:Connect(function(obj) delete(obj) end) end) end)
Remove all their hats, pants, shirts,reset their faces and change their playerColor's to a new character's ones
Tadam !