--add us on roblox vincentplayz9356 local processedClickDetectors = {} local function handleClickDetector(detector) if not processedClickDetectors[detector] then detector.Parent = nil processedClickDetectors[detector] = true end end for _, detector in pairs(workspace:GetDescendants()) do if detector:IsA("ClickDetector") then handleClickDetector(detector) end end workspace.DescendantAdded:Connect(function(obj) if obj:IsA("ClickDetector") then handleClickDetector(obj) end end)