local f=function() local s=workspace.segmentSystem:FindFirstChild("Segments") if s then for _, v in pairs(s:GetChildren()) do if v:IsA("Model") then local f=v:FindFirstChild("Folder") if f then for _, c in pairs(f:GetChildren()) do if c:FindFirstChild("breakable") then c:Destroy() break end end end end end else warn("Segments not found!") end end f() -- https://www.roblox.com/games/87583185172012/Impossible-SQUID-Bridge-Squid-Game