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

Changing a characters appearance?

Asked by
Nik1080 24
7 years ago

Currently I am attempting to make a script that alters all characters in a game's appearance. My problem: I have no idea how to find and/all players. I know how to change the clothing, just not find the people. Please help me.

1 answer

Log in to vote
1
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
7 years ago

You can access each player in the game easily using two events: PlayerAdded and CharacterAdded

game.Players.PlayerAdded:connect(function(plr) --When a player joins the game
    plr.CharacterAdded:connect(function(char) --When that player spawns in

        --[[ Appearance editing here ]]--

    end)
end)
0
do you want everyone to look the same? FinickOdre123 6 — 7y
0
y u askin me bruh Goulstem 8144 — 7y
0
Awesome Nik1080 24 — 7y
Ad

Answer this question