MaxproGlitcher

Auto Laby Halloween Pizza place .lua

Oct 25th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. -- Script create by MaxproGlitcher
  2.  
  3. local TweenService = game:GetService("TweenService")
  4. local player = game.Players.LocalPlayer
  5. local character = player.Character or player.CharacterAdded:Wait()
  6. local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  7.  
  8. local destinations = {
  9. CFrame.new(317.957764, 15.8000717, -2141.66211, 0, 1, 0, 0, 0, -1, -1, 0, 0),
  10. CFrame.new(88.2577362, 15.6000214, -2014.0592, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  11. CFrame.new(394.457947, 15.6000519, -1983.36011, -1, 0, -0, 0, 0, -1, 0, -1, -0),
  12. CFrame.new(441.257874, 15.600029, -2280.66382, -1, 0, -0, 0, 0, -1, 0, -1, -0),
  13. CFrame.new(319.957764, 15.9000244, -2365.76001, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  14. CFrame.new(187.158051, 15.7000046, -2257.0603, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  15. CFrame.new(67.0576096, 15.5000763, -2374.25903, 0, 1, 0, 0, 0, -1, -1, 0, 0),
  16. CFrame.new(471.615906, 17.9692135, -2119.09082, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  17. }
  18.  
  19. local tweenInfo = TweenInfo.new(2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
  20.  
  21. local function teleportWithTween(destination)
  22. local tween = TweenService:Create(humanoidRootPart, tweenInfo, {CFrame = destination})
  23. tween:Play()
  24. tween.Completed:Wait()
  25. end
  26.  
  27. for _, destination in ipairs(destinations) do
  28. teleportWithTween(destination)
  29. wait(5)
  30. end
  31.  
Advertisement
Add Comment
Please, Sign In to add comment