A Bizarre Village Modded Killer

Uploaded On
Script Credit :- Avan#7156
Features

Modded Killer

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

local ReplicatedStorage = game:GetService("ReplicatedStorage") local Lighting = game:GetService("Lighting") function HasProperty(Object, PropertyName) local Success, Result = pcall(function() Object[PropertyName] = Object[PropertyName] end) return Success end local FireLimb = ReplicatedStorage:WaitForChild("FireLimb") for Index, Object in pairs(game:GetDescendants()) do if HasProperty(Object, "Enabled") and not Object:IsDescendantOf(Lighting) then FireLimb:FireServer({ Fire = Object }, false) end end