--BROUGHT TO YOU BY RobloxScripter.com!--
local old
old = hookmetamethod(game,"__namecall",function(self,...)
local method = getnamecallmethod()
if method:lower() == "fireserver" and not checkcaller() then
local args = {...}
if args[3] == "Enemy" or (tostring(self) == "StatsChange" and args[1] == "Level") then
return nil
end
end
return old(self,...)
end)