ADVERTISEMENTREMOVE ADS
Show Correct Path | Open Source
47,029 views
Description
Simple script that destroys any glass that has the BoolValue "breakable"
Features:
- Show Path
ADVERTISEMENTREMOVE ADS
9 Lines • 246 Bytes
local segmentFolder = workspace.segmentSystem.Segments
for _, descendant in pairs(segmentFolder:GetDescendants()) do
if descendant:IsA("Part") and descendant:FindFirstChild("breakable") then
descendant:Destroy()
end
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS




Comments
dont work : xeno