Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- https://www.roblox.com/games/14348341259/PART-2-Find-The-Cursors-34
- -- // Script By ChatGPT
- -- https://www.roblox.com/games/14348341259/PART-2-Find-The-Cursors-20
- warn("Do not abuse this script or this might get you banned.")
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local function teleportToAllPartsInCursors()
- local cursorsFolder = workspace:FindFirstChild("Cursors")
- if cursorsFolder then
- for _, part in ipairs(cursorsFolder:GetChildren()) do
- if part:IsA("BasePart") and not part:GetAttribute("Collected") then
- character:SetPrimaryPartCFrame(part.CFrame)
- wait(10)
- end
- end
- else
- warn("Folder 'Cursors' not found in Workspace.")
- end
- end
- teleportToAllPartsInCursors()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement