beinas
|
  |
| Joined: 16 Feb 2015 |
| Total Posts: 3017 |
|
|
| 07 Nov 2015 10:37 PM |
| So I want to make a script that makes someone a certain character on enter. So I want to make them look like someone else "EXAMPLE: a noob" on game enter. Anyone have a script for this? |
|
|
| Report Abuse |
|
|
| 07 Nov 2015 10:57 PM |
If you want to make a certain character plainly come in the game like what you said, a plain noob, then you should just change the body colors when the player enters. Example: --------------------------------------------------------------------------------------------- function PlayerEntered(player) player.torso.BrickColor = Brickcolor.new("Bright blue') player.LeftArm.BrickColor = Brickcolor.new("Bright yellow') player.RightArm.BrickColor = Brickcolor.new("Bright yellow') --and so on.... end game.Players.ChildAdded:connect(PlayerEntered) --------------------------------------------------------------------------------------------
hope this helped.
|
|
|
| Report Abuse |
|