--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local LocalPlayer = Players.LocalPlayer local cashdupe = 50 -- How many times to teleport local delayTime = 0.1 -- 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 -- Glass detection and color update local function updateGlassColors() for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") then local name = part.Name:lower() if string.find(name, "vidrio templado") then part.BrickColor = BrickColor.new("Lime green") elseif string.find(name, "vidrio roto") then part.BrickColor = BrickColor.new("Really red") end end end end -- Run it once after teleport updateGlassColors()