Advertisement
idontpostcracks

wewe

May 26th, 2022
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. local teleport_table = {
  2. location1 = Vector3.new(-40.1499786, 6.39520884, 450.304626, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  3. }
  4.  
  5. local tween_s = game:GetService('TweenService')
  6. local tweeninfo = TweenInfo.new(20,Enum.EasingStyle.Linear)
  7.  
  8. local lp = game.Players.LocalPlayer
  9.  
  10. function bypass_teleport(v)
  11. if lp.Character and
  12. lp.Character:FindFirstChild('HumanoidRootPart') then
  13. local cf = CFrame.new(v)
  14. local a = tween_s:Create(lp.Character.HumanoidRootPart,tweeninfo,{CFrame=cf})
  15. a:Play()
  16. end
  17. end
  18.  
  19. bypass_teleport(teleport_table.location1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement