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

How do I make everyone look exactly like one person?

Asked by
wddd89 35
10 years ago

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.

2 answers

Log in to vote
9
Answered by
Azarth 3141 Moderation Voter Community Moderator
10 years ago
Edited 3 years ago

EDIT in 2020; Use HumanoidDescription or

  1. Play game

  2. Copy your Character in workspace or use the RigBuilderPlugin

  3. Stop game

  4. Remove everything except visual Character assets

  5. Edit Character Model as needed

  6. Paste Character in StarterPlayer folder

  7. 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)

0
Why did someone rate this post -1 :/ i had to rate it up again, since it's a good one U_u Hippalectryon 3 — 10y
0
:( thanks Azarth 3141 — 10y
0
Someone still keeps rating you down :/ i had to rate you up on 4 other subjects for you to stay at that level... Q_Q Hippalectryon 3 — 10y
0
Figured I was being targeted for some reason, thanks.. Azarth 3141 — 10y
0
I backed you up :) 6 rep should be enough to make him stop Hippalectryon 3 — 10y
Ad
Log in to vote
-1
Answered by 10 years ago

Remove all their hats, pants, shirts,reset their faces and change their playerColor's to a new character's ones

Tadam !

Answer this question