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

How do I make a person that enters looks like me?

Asked by 10 years ago

How do I make person so that it looks like me? Please help By the way I am new to scripting so can you make it easy?

1 answer

Log in to vote
2
Answered by
jobro13 980 Moderation Voter
10 years ago

Yup. This is actually very easy. Every Player Instance (an Instance is "something", such as a Part, or a Shirt) has a property called CharacterAppearance, which defines which character should be loaded.

If you put this in a Server Script (Basic Objects -> Script), it will work. What it does: every time a player joins the "PlayerEntered" function will run, which will set the CharacterApperance of the player to your CharacterApperance.

They might want to reset first.

function PlayerEntered(player)
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=32131002"
end
game.Players.PlayerAdded:connect(PlayerEntered)

You can also change the numbers behind "userId" to change the appearance. Try changing it to my user id (4030068) for example to give everyone doge heads! (awesome!)

0
Thanks man :) hameed2012 5 — 10y
0
No problem! jobro13 980 — 10y
Ad

Answer this question