local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local LocalPlayer = Players.LocalPlayer local cashdupe = 10000 -- How many times to teleport local delayTime = 0.01 -- this is just to fucking time to teleport StarterGui:SetCore("SendNotification", { Title = "Dupe Activated"; Text = "i fucking hate delta but this was made by Dolta oh all i did was change the e with an o.. but still I FUCKING HATE IT AAAAAAAAAAAHHHHHHHHHHHHHH!!"; Duration = 4; }) local function getTargetPart() return workspace:FindFirstChild("PremioMAXTSAINTS", true) end local function tpIntoPart() for i = 1, cashdupe do local root = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") local target = getTargetPart() if root and target and target:IsA("BasePart") then root.CFrame = target.CFrame + Vector3.new(0, 1.5, 0) else warn("Couldn’t teleport on attempt #" .. i) break end task.wait(delayTime) end end --Scan for the FUCKing chest local found = getTargetPart() if found then tpIntoPart() else warn("PremioMAXTSAINTS not found in workspace.") end