|
| 12 Nov 2017 08:12 PM |
how so how would I make this script clone the player and teleport them to the part I want them to go to?
local animation = Instance.new("Animation") animation.AnimationId =""
players = game:GetService("Players") players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) wait()
local animtrack = character.Humanoid:LoadAnimation(animation) animTrack:Play() player.Archivable = true a = player:Clone() a.CFrame = workspace.somepart.CFrame a.Parent = workspace end) end) |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|