Answered by
6 years ago Edited 6 years ago
I don't know what a "Fire spread script" is, but I've seen things that sound similar.
Try using this script instead, it should work to remove all the spammed objects, but it's untested.
01 | function clean(name, path, otype) |
02 | for i,v in pairs (path:GetChildren()) do |
03 | if v:IsA(otype) = = true and v.Name = = name then |
04 | if v:GetChildren() ~ = nil then |
Now you just call the function with whatever parameters you want, because I don't know what the fire spread script is.
Side note: If your "developers" use free models, fire them.
EDIT: If you're asking how to complete that script, you can use the :Destroy() method to destroy the objects, or the :remove() method if you want to set their parent to nil.