Advertisement
Smartdumgood

poopoo doodoo head stealing my script

Jan 2nd, 2025
759
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Brainrot Maze🧠💥", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. local Tab = Window:MakeTab({
  5. Name = "Checkpoints",
  6. Icon = "rbxassetid://4483345998",
  7. PremiumOnly = false
  8. })
  9.  
  10. -- Function to teleport player to checkpoint
  11. local function teleportToCheckpoint(position)
  12. local player = game.Players.LocalPlayer
  13. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  14. player.Character.HumanoidRootPart.CFrame = CFrame.new(position)
  15. end
  16. end
  17.  
  18. -- Checkpoint 1 Button
  19. Tab:AddButton({
  20. Name = "Checkpoint 1",
  21. Callback = function()
  22. teleportToCheckpoint(Vector3.new(857, 1, -18))
  23. end
  24. })
  25.  
  26. -- Checkpoint 2 Button
  27. Tab:AddButton({
  28. Name = "Checkpoint 2",
  29. Callback = function()
  30. teleportToCheckpoint(Vector3.new(1603, 1, -69))
  31. end
  32. })
  33.  
  34. -- Checkpoint 3 Button
  35. Tab:AddButton({
  36. Name = "Checkpoint 3",
  37. Callback = function()
  38. teleportToCheckpoint(Vector3.new(2172, 2, -279))
  39. end
  40. })
  41.  
  42. -- Keep the UI loaded
  43. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement