xvc200

Netflix Nextworld - Squid Game 2 Event Script

Jan 10th, 2025 (edited)
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. -- Orion Library'yi yükleme
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3. local Window = OrionLib:MakeWindow({
  4. Name = "Netflix Nextworld - Squid Game 2 Event Script",
  5. HidePremium = false,
  6. SaveConfig = true,
  7. ConfigFolder = "OrionHub"
  8. })
  9.  
  10. -- Teleport Koordinatları
  11. local teleportLocations = {
  12. {x = 39786, y = -79, z = 39918},
  13. {x = 39793, y = -69, z = 39975},
  14. {x = 39844, y = -69, z = 39969},
  15. {x = 39887, y = -69, z = 39976},
  16. {x = 39899, y = -53, z = 39870},
  17. {x = 39811, y = -53, z = 39889},
  18. {x = 39811, y = -36, z = 39992},
  19. {x = 39927, y = -36, z = 39988},
  20. {x = 39937, y = -19, z = 39878},
  21. {x = 39798, y = -19, z = 39880},
  22. {x = 39797, y = -19, z = 39906},
  23. {x = 39798, y = -3, z = 39979},
  24. {x = 39876, y = 15, z = 39978},
  25. {x = 39956, y = 26, z = 39946},
  26. {x = 39956, y = 8, z = 40014},
  27. {x = 40015, y = -7, z = 39981},
  28. {x = 39990, y = 14, z = 39889},
  29. {x = 39786, y = 13, z = 39892},
  30. {x = 39788, y = 48, z = 40061},
  31. {x = 39820, y = 48, z = 40069},
  32. {x = 40096, y = 48, z = 40069},
  33. {x = 40113, y = 48, z = 40068},
  34. }
  35.  
  36. -- Checkbox durumu
  37. local teleportEnabled = false
  38.  
  39. -- TweenService Tanımlama
  40. local TweenService = game:GetService("TweenService")
  41.  
  42. -- Tween Fonksiyonu
  43. local function tweenToLocation(location, speed)
  44. local player = game.Players.LocalPlayer
  45. if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  46. local humanoidRootPart = player.Character.HumanoidRootPart
  47. local targetCFrame = CFrame.new(location.x, location.y, location.z)
  48. local distance = (humanoidRootPart.Position - targetCFrame.Position).Magnitude
  49. local tweenInfo = TweenInfo.new(distance / speed, Enum.EasingStyle.Linear)
  50. local tween = TweenService:Create(humanoidRootPart, tweenInfo, {CFrame = targetCFrame})
  51. tween:Play()
  52. tween.Completed:Wait()
  53. end
  54. end
  55.  
  56. -- Koordinatlar arasında teleport
  57. local function startTeleporting()
  58. if teleportEnabled then
  59. for _, location in ipairs(teleportLocations) do
  60. if not teleportEnabled then
  61. break
  62. end
  63. tweenToLocation(location, 50) -- Hızı buradan ayarlayabilirsiniz (örnek: 50)
  64. wait(1) -- Her tween arasında bekleme süresi (opsiyonel)
  65. end
  66. teleportEnabled = false -- Tüm koordinatlar tamamlanınca hareket durur
  67. OrionLib:MakeNotification({
  68. Name = "completed",
  69. Content = "All points visited!",
  70. Image = "rbxassetid://4483345998",
  71. Time = 3
  72. })
  73. end
  74. end
  75.  
  76. -- Checkbox ekleme
  77. Window:MakeTab({
  78. Name = "Tween Teleport",
  79. Icon = "rbxassetid://4483345998",
  80. PremiumOnly = false
  81. }):AddToggle({
  82. Name = "Enable Auto Farm",
  83. Default = false,
  84. Callback = function(value)
  85. teleportEnabled = value
  86. if teleportEnabled then
  87. coroutine.wrap(startTeleporting)()
  88. end
  89. end
  90. })
  91.  
  92. -- UI'yi başlatma
  93. OrionLib:Init()
  94. --Made By IEnes
Advertisement
Add Comment
Please, Sign In to add comment