Advertisement
ArtX

FE TP Script

Jun 29th, 2018
12,711
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1.  
  2. -- enter person you want to be teleported in TP1
  3. -- enter person TP1 should teleport to in TP2
  4. -- (you'll also tp with them)
  5. TP1 = "USERNAME"
  6. TP2 = "USERNAME"
  7.  
  8. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  9. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  10. l.Parent = game.Players.LocalPlayer.Character
  11. l.Name = "Humanoid"
  12. wait(0.1)
  13. game.Players.LocalPlayer.Character["1"]:Destroy()
  14. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  15. game.Players.LocalPlayer.Character.Animate.Disabled = true
  16. wait(0.1)
  17. game.Players.LocalPlayer.Character.Animate.Disabled = false
  18. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  19. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  20. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  21. end
  22. local function tp(player,player2)
  23. local char1,char2=player.Character,player2.Character
  24. if char1 and char2 then
  25. char1:MoveTo(char2.Head.Position)
  26. end
  27. end
  28. wait(0.1)
  29. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[TP1].Character.HumanoidRootPart.CFrame
  30. wait(0.5)
  31. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[TP2].Character.HumanoidRootPart.CFrame
  32. wait(0.2)
  33. tp(game.Players.LocalPlayer,game.Players[TP2])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement