AaronSo0908

adfqa

Jan 9th, 2022
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. while wait () do
  2. local plr = game:service"Players".LocalPlayer;
  3. local tween_s = game:service"TweenService";
  4. local info = TweenInfo.new(2,Enum.EasingStyle.Quad);
  5. function tp(...)
  6. local tic_k = tick();
  7. local params = {...};
  8. local cframe = CFrame.new(params[1],params[2],params[3]);
  9. local tween,err = pcall(function()
  10. local tween = tween_s:Create(plr.Character["HumanoidRootPart"],info,{CFrame=cframe});
  11. tween:Play();
  12. end)
  13. if not tween then return err end
  14. end
  15.  
  16. tp(-55.1682892, 70.8159409, 1298.73474); --start
  17.  
  18. wait (2)
  19.  
  20. tp(-55.1682892, 70.8159409, 1298.73474); --start
  21.  
  22. wait(2)
  23.  
  24. tp(-55.4936447, 70.283051, 9497.36523, 0.467558503, -3.92381327e-09, 0.883962154, 7.25372047e-08, 1, -3.3928572e-08, -0.883962154, 7.99837352e-08, 0.467558503); --end
  25.  
  26. wait (22)
  27.  
  28. end
Advertisement
Add Comment
Please, Sign In to add comment