-- Services local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = Players.LocalPlayer -- Remote local tutorialRemote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("TutorialComplete") -- Target CFrame local TARGET_CFRAME = CFrame.new(877.203552, 561.024109, -1046.94189, -1, 0, 0, 0, 1, 0, 0, 0, -1) -- OrionLib l local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/jensonhirst/Orion/main/source"))() -- Window local Window = OrionLib:MakeWindow({ Name = "+1 Speed Butter Escape 🧈", HidePremium = true, SaveConfig = false, IntroEnabled = true, IntroText = "Butter Escape", IntroIcon = "rbxassetid://4483345998" }) -- Main Tab local MainTab = Window:MakeTab({ Name = "Main", Icon = "rbxassetid://4483345998", PremiumOnly = false }) -- Variablen local tutorialCompleted = false local teleportLoop = nil -- Tutorial Section MainTab:AddSection({ Name = "Tutorial Required" }) MainTab:AddLabel("You must complete the tutorial first!") MainTab:AddButton({ Name = "Complete Tutorial", Callback = function() tutorialRemote:FireServer() OrionLib:MakeNotification({ Name = "Tutorial", Content = "Tutorial completion request sent!", Image = "rbxassetid://4483345998", Time = 3 }) task.wait(1.5) tutorialCompleted = true OrionLib:MakeNotification({ Name = "Success", Content = "Tutorial completed! Teleport unlocked.", Image = "rbxassetid://4483345998", Time = 4 }) end }) -- Teleport Section MainTab:AddSection({ Name = "Teleport" }) MainTab:AddToggle({ Name = "Loop Teleport", Default = false, Callback = function(Value) if Value then if not tutorialCompleted then OrionLib:MakeNotification({ Name = "Error", Content = "Complete the tutorial first!", Image = "rbxassetid://4483345998", Time = 3 }) return end teleportLoop = RunService.Heartbeat:Connect(function() local char = player.Character if not char then return end local hrp = char:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = TARGET_CFRAME end end) OrionLib:MakeNotification({ Name = "Teleport", Content = "Loop teleport started!", Image = "rbxassetid://4483345998", Time = 2 }) else if teleportLoop then teleportLoop:Disconnect() teleportLoop = nil end OrionLib:MakeNotification({ Name = "Teleport", Content = "Loop teleport stopped!", Image = "rbxassetid://4483345998", Time = 2 }) end end }) -- Init OrionLib:Init() print("Butter Escape loaded")