local CATEGORY_NAME = "Illuminati"
 
function ulx.illuminati( calling_ply, target_plys)
 
        for i=1, #target_plys do
                local v = target_plys[ i ]
 
                if v:IsRole(ROLE_TRAITOR) then
                local health = v:Health()
                v:SetHealth(health-5)
				//halo.Add({v}, Color(255, 0, 0), 0, 0, 2, true, true) This is where the error is

                ulx.fancyLogAdmin( calling_ply, "#A has prayed to the illuminati confirming #T as a Traitor!", target_plys )
 
                end
        end
end
local illuminati = ulx.command( CATEGORY_NAME, "ulx illuminati", ulx.illuminati, "!illuminati", true)
illuminati:addParam{ type=ULib.cmds.PlayersArg }
illuminati:defaultAccess( ULib.ACCESS_SUPERADMIN )
illuminati:help( "Use wisely..." )