Advertisement
RoGhoulXD

Build

Apr 7th, 2023 (edited)
779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. local teleport_table = {
  2.      location1 = Vector3.new(-53.34, 5,50, 1787.41);
  3.      location2 = Vector3.new(-62.83, -4.26, 8598.87);
  4.      location3 = Vector3.new(-56.02, -360.40, 9471.18)
  5.    
  6. }
  7.  
  8. local tween_s = game:GetService('TweenService')
  9. local tweeninfo = TweenInfo.new(0.5,Enum.EasingStyle.Linear)
  10.  
  11. local lp = game.Players.LocalPlayer
  12.  
  13. function bypass_teleport(v)
  14.     if lp.Character and
  15.         lp.Character:FindFirstChild('HumanoidRootPart') then
  16.        
  17.         local cf = CFrame.new(v)
  18.         local a = tween_s:Create(lp.Character.HumanoidRootPart,tweeninfo,{CFrame=cf})
  19.         a:Play()
  20.         a.Completed:Wait()
  21.         print('tp done')
  22.    end
  23. end
  24. wait(1)
  25. bypass_teleport(teleport_table.location1)
  26. wait(0.5)
  27. bypass_teleport(teleport_table.location2)
  28. wait(0.5)
  29. bypass_teleport(teleport_table.location3)
  30.  
  31.  
  32.            
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement