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

Help with character?

Asked by
FiredDusk 1466 Moderation Voter
8 years ago

This is NOT a request! So what the script below does is when a player joins they will look like they id that is posted below. The ID= me Everytime I update my character it changes. I want it to stay how my character is 1/ one outfit. I dont want it to change when I change my character.

local Players = Game:GetService("Players")

Players.PlayerAdded:connect(function(Player)
    Player.CharacterAdded:connect(function(Character)
       Player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=34806691" 
    end)
end)

0
This is unfortunately not changeable. you're going to have to add everything to the player seperately. HungryJaffer 1246 — 8y

1 answer

Log in to vote
0
Answered by
phriol 25
8 years ago

It would not work because you're getting your player's character, but if you change your character, it would still be the same. You have to make a separate character instead of using your player ID.

Ad

Answer this question