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

Change character color?

Asked by 10 years ago

How do i make a script so when the player joins the game is changes there appearance color and transparency?

1 answer

Log in to vote
0
Answered by 10 years ago
game.Players.PlayerAdded:connect(function(player)
    player.CharacterAdded:connect(function(character)
    Character.BodyPart.Transparency = 0.5
    Character.BodyPart.BrickColor = BrickColor.new("This is a color")
    Character
    end)
end)

--When a player joins the game, we wait for their character to load, then set whatever you want. With Limbs, since the name is two separate words, do
Character["Left Arm"].Transparency

EDIT: Actually, you might have to change the Body Colors in the model as well.. EDITEDIT: Wait no, I was in Studio and the temporary character was wearing a shirt xD

0
How? masterhalo55 75 — 10y
0
Nevermind, edited post infalliblelemon 145 — 10y
0
Okay, but it didn't work. :/ masterhalo55 75 — 10y
0
Edit your post with your script. infalliblelemon 145 — 10y
Ad

Answer this question