Advertisement
ProHuilonYTZ

Find The Cursors Teleport To All Cursors

Oct 27th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. -- https://www.roblox.com/games/14348341259/PART-2-Find-The-Cursors-34
  2. -- // Script By ChatGPT
  3. -- https://www.roblox.com/games/14348341259/PART-2-Find-The-Cursors-20
  4.  
  5. warn("Do not abuse this script or this might get you banned.")
  6.  
  7. local player = game.Players.LocalPlayer
  8. local character = player.Character or player.CharacterAdded:Wait()
  9.  
  10. local function teleportToAllPartsInCursors()
  11.     local cursorsFolder = workspace:FindFirstChild("Cursors")
  12.     if cursorsFolder then
  13.         for _, part in ipairs(cursorsFolder:GetChildren()) do
  14.             if part:IsA("BasePart") and not part:GetAttribute("Collected") then
  15.                 character:SetPrimaryPartCFrame(part.CFrame)
  16.                 wait(10)
  17.             end
  18.         end
  19.     else
  20.         warn("Folder 'Cursors' not found in Workspace.")
  21.     end
  22. end
  23.  
  24. teleportToAllPartsInCursors()
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement