What is the Best Plugin For Removing Fire?

What is the best and most effective plugin for removing fire?

for i, v in pairs(workspace:GetDescendants()) do
   if v:IsA(“Fire”) then
      v:Destroy()
   end
end
2 Likes
for _, selected in ipairs(game.Selection:Get()) do
    for _, desc in ipairs(selected:GetDescendants()) do
        if desc:IsA('Fire') then desc:Destroy() end
    end
end

Select your stuff you wanna remove fires from, and then run this in your command bar :stuck_out_tongue:

3 Likes

For maximum education I would recommend learning the difference between GetChildren and GetDescendants :stuck_out_tongue:

2 Likes

Wow that feature I kinda ignored for a year actually did something…