Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Orion Library'yi yükleme
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({
- Name = "Netflix Nextworld - Squid Game 2 Event Script",
- HidePremium = false,
- SaveConfig = true,
- ConfigFolder = "OrionHub"
- })
- -- Teleport Koordinatları
- local teleportLocations = {
- {x = 39786, y = -79, z = 39918},
- {x = 39793, y = -69, z = 39975},
- {x = 39844, y = -69, z = 39969},
- {x = 39887, y = -69, z = 39976},
- {x = 39899, y = -53, z = 39870},
- {x = 39811, y = -53, z = 39889},
- {x = 39811, y = -36, z = 39992},
- {x = 39927, y = -36, z = 39988},
- {x = 39937, y = -19, z = 39878},
- {x = 39798, y = -19, z = 39880},
- {x = 39797, y = -19, z = 39906},
- {x = 39798, y = -3, z = 39979},
- {x = 39876, y = 15, z = 39978},
- {x = 39956, y = 26, z = 39946},
- {x = 39956, y = 8, z = 40014},
- {x = 40015, y = -7, z = 39981},
- {x = 39990, y = 14, z = 39889},
- {x = 39786, y = 13, z = 39892},
- {x = 39788, y = 48, z = 40061},
- {x = 39820, y = 48, z = 40069},
- {x = 40096, y = 48, z = 40069},
- {x = 40113, y = 48, z = 40068},
- }
- -- Checkbox durumu
- local teleportEnabled = false
- -- TweenService Tanımlama
- local TweenService = game:GetService("TweenService")
- -- Tween Fonksiyonu
- local function tweenToLocation(location, speed)
- local player = game.Players.LocalPlayer
- if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
- local humanoidRootPart = player.Character.HumanoidRootPart
- local targetCFrame = CFrame.new(location.x, location.y, location.z)
- local distance = (humanoidRootPart.Position - targetCFrame.Position).Magnitude
- local tweenInfo = TweenInfo.new(distance / speed, Enum.EasingStyle.Linear)
- local tween = TweenService:Create(humanoidRootPart, tweenInfo, {CFrame = targetCFrame})
- tween:Play()
- tween.Completed:Wait()
- end
- end
- -- Koordinatlar arasında teleport
- local function startTeleporting()
- if teleportEnabled then
- for _, location in ipairs(teleportLocations) do
- if not teleportEnabled then
- break
- end
- tweenToLocation(location, 50) -- Hızı buradan ayarlayabilirsiniz (örnek: 50)
- wait(1) -- Her tween arasında bekleme süresi (opsiyonel)
- end
- teleportEnabled = false -- Tüm koordinatlar tamamlanınca hareket durur
- OrionLib:MakeNotification({
- Name = "completed",
- Content = "All points visited!",
- Image = "rbxassetid://4483345998",
- Time = 3
- })
- end
- end
- -- Checkbox ekleme
- Window:MakeTab({
- Name = "Tween Teleport",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- }):AddToggle({
- Name = "Enable Auto Farm",
- Default = false,
- Callback = function(value)
- teleportEnabled = value
- if teleportEnabled then
- coroutine.wrap(startTeleporting)()
- end
- end
- })
- -- UI'yi başlatma
- OrionLib:Init()
- --Made By IEnes
Advertisement
Add Comment
Please, Sign In to add comment