01 | local plr = game.Players.LocalPlayer |
02 | local button = script.Parent |
03 | local appearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=13645" |
04 | local teleportLocation = CFrame.new( 240.2 , 0.5 , - 246.4 ) |
05 |
06 |
07 | function Click() |
08 | plr.CharacterAppearance = appearance |
09 | plr.Character.Torso.CFrame = teleportLocation |
10 | end |
11 |
12 | button.MouseButton 1 Down:connect(Click) |
You need to find a way to make the player reset or reload the character.
01 | local plr = game.Players.LocalPlayer |
02 | local button = script.Parent |
03 | local appearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=13645" |
04 |
05 | function Click() |
06 | plr.CharacterAppearance = appearance |
07 | plr:LoadCharacter() --Look up the load character function! |
08 | end |
09 |
10 | button.MouseButton 1 Down:connect(Click) |
Server script in workspace or something
1 | local teleportLocation = CFrame.new( 240.2 , 0.5 , - 246.4 ) |
2 |
3 | game.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 ) |
9 | end ) |
Do something like the above, I think you can think of something.
Hope this helps!