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

Why doesn't the player change appearance?

Asked by
Akozta 40
10 years ago
01local plr = game.Players.LocalPlayer
02local button = script.Parent
04local teleportLocation = CFrame.new(240.2, 0.5, -246.4)
05 
06 
07function Click()
08    plr.CharacterAppearance = appearance
09    plr.Character.Torso.CFrame = teleportLocation
10end
11 
12button.MouseButton1Down:connect(Click)

1 answer

Log in to vote
1
Answered by 10 years ago

You need to find a way to make the player reset or reload the character.

01local plr = game.Players.LocalPlayer
02local button = script.Parent
04 
05function Click()
06    plr.CharacterAppearance = appearance
07    plr:LoadCharacter() --Look up the load character function!
08end
09 
10button.MouseButton1Down:connect(Click)

Server script in workspace or something

1local teleportLocation = CFrame.new(240.2, 0.5, -246.4)
2 
3game.Player.PlayerAdded:connect(function(player)
4    player.CharacterAdded:connect(function(char)
5        if player.CharacterAppearance == "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=13645" then --If the character looks like telamon!
6            char.Torso.CFrame = teleportLocation --Move here.
7        end
8    end)
9end)

Do something like the above, I think you can think of something.


Hope this helps!

Ad

Answer this question