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

How do i change the look on a user???

Asked by 7 years ago

Like lets say I want to remove everything they have on and make them look nooby (Because i am making a game) How do i do that

0
Under the properties of StarterPlayer, there's an option to turn off "Load Character Appearance". User#11440 120 — 7y
0
Okay thanks but how do i change the color Nooblics 0 — 7y

2 answers

Log in to vote
0
Answered by 7 years ago
game.workspace.(namehere).ShirtTemplate:Destroy()

i think this'd work but i am not sure

0
Wow, did you put ANY effort into that? ShirtTemplate is a property of THE SHIRT. So it'll bring up as NIL. Plus he wants them to look noobish. And he wants ALL the players to do so. This script is just a bunch of errors. itsJooJoo 195 — 7y
Ad
Log in to vote
0
Answered by
itsJooJoo 195
7 years ago

Put a LocalScript inside StarterPlayer and in the StarterCharacterScripts. Put the following lines inside it:

local c = script.Parent:WaitForChild('Body Colors')

c.HeadColor = BrickColor.new('Bright yellow')
c.LeftArmColor = BrickColor.new('Bright yellow')
c.LeftLegColor = BrickColor.new('Shamrock')
c.RightArmColor = BrickColor.new('Bright yellow')
c.RightLegColor = BrickColor.new('Shamrock')
c.TorsoColor = BrickColor.new('Steel blue')

And inside StarterPlayer, go down to the bottom of the properties, and select LoadCharacterAppearance. Make sure it is set to false (not enabled). And there you go. All players look like noobs.

Answer this question